diff options
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 2b67297..1b8ab64 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,10 +10,21 @@ in system.stateVersion = "23.05"; imports = [ + ./modules (./hardware + "/${me.name}.nix") (./machines + "/${me.name}.nix") ]; + nixpkgs = { + config.allowUnfree = true; + overlays = [ (super: final: import ./pkgs final )]; + }; + + programs.test.meow = { + enable = true; + name = "mel"; + }; + boot.loader.systemd-boot.enable = true; users.mutableUsers = false; |
