aboutsummaryrefslogtreecommitdiff
path: root/modules/nix/nixos/default.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-20 07:49:56 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-20 07:53:22 -0600
commit70f702c6fd33454aebc4a266789fc5bf7e77e960 (patch)
treeafd021e65acab4ed2cde532b3eb914bfc6cb9ff9 /modules/nix/nixos/default.nix
parent26533470d5eebca67519c0a0ce797bedfb6a5e25 (diff)
age + other various changes
Diffstat (limited to 'modules/nix/nixos/default.nix')
-rw-r--r--modules/nix/nixos/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/nix/nixos/default.nix b/modules/nix/nixos/default.nix
index 07e7f44..7116371 100644
--- a/modules/nix/nixos/default.nix
+++ b/modules/nix/nixos/default.nix
@@ -1,9 +1,12 @@
{
+ 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
@@ -15,15 +18,13 @@
auto-optimise-store = true;
use-xdg-base-directories = true;
};
- };
- # Disable channels
- nix.channel.enable = false;
-
- nixpkgs = {
- config.allowUnfree = true;
+ # Disable channels
+ channel.enable = false;
};
+ nixpkgs.config.allowUnfree = true;
+
programs.nh = {
enable = true;
flake = "/home/collin/nixos";