diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 20:44:39 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 20:44:39 -0700 |
| commit | 3860d3328a64eb231d199bbe85d5ca345dbaa3ae (patch) | |
| tree | e9c547f809bc5570162cbda33055a69f9e647679 /hosts | |
| parent | 34ddde9acac134523c1403f475847bc0f08b3d3e (diff) | |
c-pc: move home-manager block
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/c-pc/configuration.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix index 5a264b1..6d49784 100644 --- a/hosts/c-pc/configuration.nix +++ b/hosts/c-pc/configuration.nix @@ -27,12 +27,6 @@ }; programs.fuse.userAllowOther = true; - home-manager = { - extraSpecialArgs = { inherit inputs; }; - users = { - "c" = import ./home.nix; - }; - }; time.timeZone = "America/Los_Angeles"; @@ -46,6 +40,13 @@ }; }; + home-manager = { + extraSpecialArgs = { inherit inputs; }; + users = { + "c" = import ./home.nix; + }; + }; + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam" "steam-original" @@ -90,6 +91,6 @@ lutris libGL ]; - + system.stateVersion = "23.11"; } |