mio-ops/hosts/sithlainnir/default.nix

22 lines
498 B
Nix
Raw Normal View History

2019-12-12 23:02:55 +00:00
# Configuration for sithlainnir, a Lenovo x201
{
2022-03-07 14:26:15 +00:00
config,
pkgs,
...
}: {
2021-11-16 04:57:23 +00:00
imports = [
2024-08-23 08:00:07 +00:00
../../hardware/lenovo_x201.nix
../../profiles/desktopFiona.nix
../../profiles/desktop_common.nix
2021-11-16 04:57:23 +00:00
];
2019-12-12 23:02:55 +00:00
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
2022-08-01 23:31:52 +00:00
deployment.targetHost = "10.42.0.114";
2021-11-16 04:57:23 +00:00
networking.hostName = "sithlainnir"; # Define your hostname.
2019-12-12 23:02:55 +00:00
2021-11-16 04:57:23 +00:00
system.stateVersion = "18.09"; # The version of NixOS originally installed
2019-12-12 23:02:55 +00:00
}