trying to unmodularize my setup
This commit is contained in:
parent
195383e6d9
commit
2f5ed1481c
9 changed files with 56 additions and 20 deletions
17
nixosModules/module-modules.nix
Normal file
17
nixosModules/module-modules.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, lib, ... }:
|
||||
# nix file for all modules
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
./docker.nix
|
||||
#./systemd.nix
|
||||
#./gnome.nix
|
||||
#./fonts.nix
|
||||
];
|
||||
|
||||
# all modules default to true
|
||||
dockerModule.enable = lib.mkDefault false;
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue