diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-11 08:03:58 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-11 08:03:58 -0600 |
| commit | 32a7e59b93a9c3748cd6aeca3d4fc9dadf8e0f59 (patch) | |
| tree | 2347b64072047b385c0637235f5fffb6ce160b1e /modules/nix/nixos/default.nix | |
| parent | c7e9ff3c853755cd3b0e8bc7443d55d222a06f80 (diff) | |
move various configs into modules where they belong
Diffstat (limited to 'modules/nix/nixos/default.nix')
| -rw-r--r-- | modules/nix/nixos/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/nix/nixos/default.nix b/modules/nix/nixos/default.nix index 7116371..c817859 100644 --- a/modules/nix/nixos/default.nix +++ b/modules/nix/nixos/default.nix @@ -1,12 +1,9 @@ { - inputs, config, pkgs, ... }: { nix = { - # package = inputs.determinate.packages.${pkgs.system}.default; - gc.automatic = false; # use nh cleaner instead # Make builds run with low priority so my system stays responsive @@ -27,9 +24,12 @@ programs.nh = { enable = true; - flake = "/home/collin/nixos"; + flake = "/home/${config.collinux.user.name}/nixos"; clean.enable = true; }; - hjem.users."${config.collinux.user.name}".packages = [pkgs.cached-nix-shell]; + environment.systemPackages = [pkgs.cached-nix-shell]; + + nixpkgs.hostPlatform = "x86_64-linux"; + system.stateVersion = "25.05"; } |
