diff options
| author | Mel <einebeere@gmail.com> | 2023-09-26 20:56:17 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2023-09-26 21:00:34 +0200 |
| commit | 6ff05d1149a24e2baaaeadc411e7f16293cc3656 (patch) | |
| tree | d55faa4d019501c4e3cb3a0cb645ecc79a5a6223 /configuration.nix | |
| parent | 664ed0dcd9d28b7f9896d62e69f47d4d889526a7 (diff) | |
| download | rnrd-6ff05d1149a24e2baaaeadc411e7f16293cc3656.tar.zst rnrd-6ff05d1149a24e2baaaeadc411e7f16293cc3656.zip | |
Create sample package and module
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; |
