allow unfree software

This commit is contained in:
2025-10-04 12:01:54 -05:00
parent 54aa1dc956
commit a5dd171871

View File

@@ -6,14 +6,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
../../users/blake/blake.nix ../../users/blake/blake.nix
../../modules/system/system.nix ../../modules/system/system.nix
# ../../modules/system/ssh.nix
# ../../modules/system/docker.nix
# ../../modules/system/syncthing.nix
# ../../modules/system/tailscale.nix
../../modules/homelab/homelab.nix ../../modules/homelab/homelab.nix
# ../../modules/homelab/zfs.nix
# ../../modules/homelab/smb.nix
# ../../modules/homelab/nfs.nix
]; ];
modules = { modules = {
@@ -22,7 +15,7 @@
docker.enable = true; docker.enable = true;
syncthing.enable = true; syncthing.enable = true;
tailscale.enable = true; tailscale.enable = true;
#nvidia.enable = true; nvidia.enable = false;
}; };
homelab = { homelab = {
zfs.enable = true; zfs.enable = true;
@@ -59,6 +52,9 @@
btop btop
]; ];
# allow proprietary packages
nixpkgs.config.allowUnfree = true;
# enable flakes # enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];