From a5dd1718718e4a457805683455ddcf5171f29e66 Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 4 Oct 2025 12:01:54 -0500 Subject: [PATCH] allow unfree software --- hosts/snowbelle/configuration.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index 6d9bb43..d02da51 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -6,14 +6,7 @@ ./hardware-configuration.nix ../../users/blake/blake.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/zfs.nix -# ../../modules/homelab/smb.nix -# ../../modules/homelab/nfs.nix ]; modules = { @@ -22,7 +15,7 @@ docker.enable = true; syncthing.enable = true; tailscale.enable = true; - #nvidia.enable = true; + nvidia.enable = false; }; homelab = { zfs.enable = true; @@ -59,6 +52,9 @@ btop ]; + # allow proprietary packages + nixpkgs.config.allowUnfree = true; + # enable flakes nix.settings.experimental-features = [ "nix-command" "flakes" ];