Create all.nix role with common modules
This commit is contained in:
parent
40bbb757a1
commit
6a9a43478c
|
@ -10,14 +10,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/fonts.nix
|
../../roles/all.nix
|
||||||
../../modules/sound.nix
|
|
||||||
../../modules/opengl.nix
|
|
||||||
../../modules/ssh.nix
|
|
||||||
../../modules/remote-builder.nix
|
|
||||||
../../modules/earlyoom.nix
|
|
||||||
../../users/fleaz.nix
|
|
||||||
../../home-manager/default.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
|
|
|
@ -11,14 +11,7 @@ in {
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../home-manager/default.nix
|
../../roles/all.nix
|
||||||
../../modules/earlyoom.nix
|
|
||||||
../../modules/fonts.nix
|
|
||||||
../../modules/opengl.nix
|
|
||||||
../../modules/remote-builder.nix
|
|
||||||
../../modules/sound.nix
|
|
||||||
../../modules/ssh.nix
|
|
||||||
../../users/fleaz.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
13
roles/all.nix
Normal file
13
roles/all.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../home-manager/default.nix
|
||||||
|
../modules/earlyoom.nix
|
||||||
|
../modules/fonts.nix
|
||||||
|
../modules/opengl.nix
|
||||||
|
../modules/remote-builder.nix
|
||||||
|
../modules/sound.nix
|
||||||
|
../modules/ssh.nix
|
||||||
|
../users/fleaz.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue