diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-24 18:40:50 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-24 18:40:50 +0100 |
| commit | 8536fe81eff5979b5eae1bbfc390cefb3cb29165 (patch) | |
| tree | b7c54b86496c51129f210d3cccf66aad77468872 | |
| parent | 3d50579446f105fc895241c1afc20fc3027ad1a2 (diff) | |
Added a home-manager module
| -rw-r--r-- | modules/home-manager.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/home-manager.nix b/modules/home-manager.nix new file mode 100644 index 0000000..e490478 --- /dev/null +++ b/modules/home-manager.nix @@ -0,0 +1,15 @@ +{inputs, ...}: { + home-manager = { + useGlobalPkgs = true; + useUserPkgs = true; + extraSpecialArgs = { + inherit (inputs) nixpkgs nixpkgs-unstable; + }; + sharedModules = [ + inputs.nixcord.homeModules.nixcord + ]; + users.mun = {osConfig, ...}: { + home.stateVersion = osConfig.system.stateVersion; + }; + }; +} |
