diff options
author | sils <sils@sils.li> | 2022-12-04 18:20:29 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2022-12-04 18:34:14 +0100 |
commit | 6faed86ea6e5518ff186ca1ec4104d5eefe21091 (patch) | |
tree | dba56dac7845b5ce50bf9837f4080d0ddfdea20f /config.nix | |
parent | Initial nix-config (diff) | |
download | nix-config-6faed86ea6e5518ff186ca1ec4104d5eefe21091.tar.gz nix-config-6faed86ea6e5518ff186ca1ec4104d5eefe21091.zip |
Modularize config
Diffstat (limited to 'config.nix')
-rw-r--r-- | config.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.nix b/config.nix new file mode 100644 index 0000000..d2f7bd1 --- /dev/null +++ b/config.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + imports = + [ + ./packages.nix + ./bootloader.nix + ./gnome.nix + ./networking.nix + ./users.nix + ./sound.nix + ./cups.nix + ]; +} |