From 6ff05d1149a24e2baaaeadc411e7f16293cc3656 Mon Sep 17 00:00:00 2001 From: Mel Date: Tue, 26 Sep 2023 20:56:17 +0200 Subject: Create sample package and module --- configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'configuration.nix') 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; -- cgit 1.4.1