From afd93588a54c230b987b8b9c4c77b2e0c6c67e8d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 13 Feb 2026 00:02:13 -0800 Subject: [PATCH] nixos: quiet warn-dirty and scope nixified-ai import --- nixos/configuration.nix | 1 - nixos/justfile | 4 ++-- nixos/machines/ryzen-shine.nix | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 014ed81d..f6e81cd1 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -28,7 +28,6 @@ ./kubelet.nix ./laptop.nix ./nix.nix - ./nixified.ai.nix ./notifications-tray-icon.nix ./nvidia.nix ./options.nix diff --git a/nixos/justfile b/nixos/justfile index 64956931..3a375d3d 100644 --- a/nixos/justfile +++ b/nixos/justfile @@ -1,8 +1,8 @@ switch *args: - sudo nixos-rebuild switch --flake '.#' --impure {{args}} + sudo nixos-rebuild switch --flake '.#' --impure --option warn-dirty false {{args}} remote-switch host *args: - nixos-rebuild switch --flake '.#{{host}}' --target-host {{host}}.local --sudo --impure {{args}} + nixos-rebuild switch --flake '.#{{host}}' --target-host {{host}}.local --sudo --impure --option warn-dirty false {{args}} fix-local-path-issue: nix flake update imalison-taffybar diff --git a/nixos/machines/ryzen-shine.nix b/nixos/machines/ryzen-shine.nix index 5614e759..1d80505f 100644 --- a/nixos/machines/ryzen-shine.nix +++ b/nixos/machines/ryzen-shine.nix @@ -3,6 +3,7 @@ { imports = [ ../configuration.nix + ../nixified.ai.nix ]; features.full.enable = true;