diff --git a/nixos/laptop.nix b/nixos/laptop.nix new file mode 100644 index 00000000..3e10f0d5 --- /dev/null +++ b/nixos/laptop.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + imports = [ + ./arm-incompatible.nix + ./base.nix + ./code.nix + ./desktop.nix + ./internet-computer.nix + ./syncthing.nix + ./xmonad.nix + ]; +} diff --git a/nixos/machines/adele.nix b/nixos/machines/adele.nix index 879bf9fb..f07a1ca5 100644 --- a/nixos/machines/adele.nix +++ b/nixos/machines/adele.nix @@ -2,8 +2,7 @@ { imports = [ - ../full.nix - ../base.nix + ../laptop.nix inputs.nixos-hardware.nixosModules.dell-xps-17-9700-intel ]; @@ -37,12 +36,5 @@ nix.settings.maxJobs = lib.mkDefault 12; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; - services.redshift.enable = true; - - location = { - latitude = 37.8104601; - longitude = -122.2572529; - }; - system.stateVersion = "20.03"; }