From a7729df705ea82dde8042446e0155dc5656efd3a Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Thu, 9 Jan 2025 01:33:30 +0100 Subject: [PATCH] fixups --- hosts/nixos/sopp/configuration.nix | 7 ++----- profiles/auto-upgrade.nix | 3 ++- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/hosts/nixos/sopp/configuration.nix b/hosts/nixos/sopp/configuration.nix index a61ed63..534e210 100644 --- a/hosts/nixos/sopp/configuration.nix +++ b/hosts/nixos/sopp/configuration.nix @@ -68,17 +68,14 @@ #../../../profiles/domeneshop-dyndns.nix # handled by noximilien ]; - environment.systemPackages = with pkgs; [ - krita - ]; - networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery hardware.bluetooth.enable = true; environment.systemPackages = [ + pkgs.krita pkgs.pbsds.v4l2-play - /* pkgs.librealsense-gui */ + pkgs.librealsense-gui ]; # Networking diff --git a/profiles/auto-upgrade.nix b/profiles/auto-upgrade.nix index 0dfc492..7f76425 100644 --- a/profiles/auto-upgrade.nix +++ b/profiles/auto-upgrade.nix @@ -15,7 +15,8 @@ lib.flip lib.mapAttrs inputs (name: input: # inputs.*.sourceInfo sans outPath, since writeJSON will otherwise serialize sourceInfo like derivation lib.filterAttrs (key: val: !builtins.elem key ["outPath"]) (input.sourceInfo or {}) - // { store-path = input.outPath; } # comment this line if you don't want to retain a store reference to the flake inputs + // { store-path = builtins.unsafeDiscardStringContext input.outPath; } + ##// { store-path = input.outPath; } # use this line instead if you want to retain a store reference to the flake inputs ) );