move desktop.nix to modules/desktop

This commit is contained in:
Andreas Zweili 2022-01-10 20:36:09 +01:00
parent 768bef46b2
commit 8e41a91d36
4 changed files with 6 additions and 5 deletions

View File

@ -48,7 +48,7 @@
configurationNix configurationNix
# Common configuration # Common configuration
./roles/common ./modules/common
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
@ -70,7 +70,7 @@
nixos-hardware.nixosModules.common-gpu-nvidia nixos-hardware.nixosModules.common-gpu-nvidia
./hardware/bluetooth ./hardware/bluetooth
./hardware/nvidia ./hardware/nvidia
./modules/desktop.nix ./modules/desktop
./modules/lockscreen ./modules/lockscreen
]; ];
staubfinger = mkComputer staubfinger = mkComputer
@ -80,13 +80,15 @@
nixos-hardware.nixosModules.common-pc-laptop nixos-hardware.nixosModules.common-pc-laptop
nixos-hardware.nixosModules.common-pc-laptop-ssd nixos-hardware.nixosModules.common-pc-laptop-ssd
./hardware/bluetooth ./hardware/bluetooth
./modules/desktop.nix ./modules/desktop
./modules/lockscreen ./modules/lockscreen
]; ];
nixos-vm = mkComputer nixos-vm = mkComputer
./systems/vm/configuration.nix ./systems/vm/configuration.nix
./home-manager/desktop.nix ./home-manager/desktop.nix
[ ]; [
./modules/desktop
];
nixos-test-vm = mkComputer nixos-test-vm = mkComputer
./systems/proxmox-vm/configuration.nix ./systems/proxmox-vm/configuration.nix
./home-manager/headless.nix ./home-manager/headless.nix

View File

@ -4,7 +4,6 @@
imports = imports =
[ [
# Include the results of the hardware scan. # Include the results of the hardware scan.
../../modules/desktop.nix
./hardware-configuration.nix ./hardware-configuration.nix
]; ];