mio-ops/hosts/iolear-beag/default.nix

21 lines
442 B
Nix
Raw Normal View History

2021-06-07 10:53:00 +10:00
# NixOS Configuration for a Lenovo x201
2019-12-11 11:52:19 +10:00
{
2022-03-08 00:26:15 +10:00
config,
pkgs,
...
}: {
2021-11-16 14:57:23 +10:00
imports = [
2024-08-23 18:00:07 +10:00
../../hardware/lenovo_x201.nix
../../profiles/desktop_common.nix
../../profiles/wine.nix
2021-11-16 14:57:23 +10:00
];
2019-12-11 11:52:19 +10:00
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
2021-11-16 14:57:23 +10:00
networking.hostName = "iolear-beag"; # Define your hostname.
2019-12-11 11:52:19 +10:00
2021-11-16 14:57:23 +10:00
system.stateVersion = "18.09"; # The version of NixOS originally installed
2019-12-11 11:52:19 +10:00
}