diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:03:08 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:07:05 -0700 |
| commit | 45b550f25799231ab4a93a368ba911da02c743ee (patch) | |
| tree | 647297e0c1d50db5c419b9018836fed362f21a63 /hosts/phoenix/configuration.nix | |
| parent | 82b6a8d9f1814c74765681381afb61b1d569f9b7 (diff) | |
phoenix: home: setup home-manager for c
Diffstat (limited to 'hosts/phoenix/configuration.nix')
| -rw-r--r-- | hosts/phoenix/configuration.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/phoenix/configuration.nix b/hosts/phoenix/configuration.nix index 18edb4c..f542ba4 100644 --- a/hosts/phoenix/configuration.nix +++ b/hosts/phoenix/configuration.nix @@ -46,8 +46,15 @@ }; }; + home-manager = { + extraSpecialArgs = { inherit inputs; }; + users = { + "c" = import ./home.nix; + }; + }; + roles = { - + desktop.enable = true; }; programs = { @@ -55,6 +62,8 @@ enable = true; enableSSHSupport = true; }; + + dconf.enable = true; }; services = { |