diff options
author | Silas Schöffel <sils@sils.li> | 2024-10-05 19:49:08 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-10-05 19:49:08 +0200 |
commit | 522a453a5052838075d066999f2ad29d522a2247 (patch) | |
tree | 2db9986b91b0dc475879705207e1639083b64e07 /flake/default.nix | |
parent | hyprland: remove neo keyboard layout (diff) | |
download | nix-config-522a453a5052838075d066999f2ad29d522a2247.tar.gz nix-config-522a453a5052838075d066999f2ad29d522a2247.zip |
various changes, needs rebase
Diffstat (limited to '')
-rw-r--r-- | flake/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flake/default.nix b/flake/default.nix index 443999e..a0e3d57 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -50,5 +50,18 @@ }; flake = { nixosConfigurations = import ./nixosConfigurations inputs; + homeConfigurations."silas" = inputs.home-manager.lib.homeManagerConfiguration { + pkgs = import inputs.nixpkgs { + system = "x86_64-linux"; + overlays = [inputs.nixvim.overlays.default]; + }; + # Specify your home configuration modules here, for example, + # the path to your home.nix. + modules = [ ../hm/silas ]; + + # Optionally use extraSpecialArgs + # to pass through arguments to home.nix + extraSpecialArgs = inputs; + }; }; } |