This commit is contained in:
Peder Bergebakken Sundt 2025-01-09 01:33:30 +01:00
parent 8d876374e1
commit a7729df705
2 changed files with 4 additions and 6 deletions

View File

@ -68,17 +68,14 @@
#../../../profiles/domeneshop-dyndns.nix # handled by noximilien #../../../profiles/domeneshop-dyndns.nix # handled by noximilien
]; ];
environment.systemPackages = with pkgs; [
krita
];
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
environment.systemPackages = [ environment.systemPackages = [
pkgs.krita
pkgs.pbsds.v4l2-play pkgs.pbsds.v4l2-play
/* pkgs.librealsense-gui */ pkgs.librealsense-gui
]; ];
# Networking # Networking

View File

@ -15,7 +15,8 @@
lib.flip lib.mapAttrs inputs (name: input: lib.flip lib.mapAttrs inputs (name: input:
# inputs.*.sourceInfo sans outPath, since writeJSON will otherwise serialize sourceInfo like derivation # inputs.*.sourceInfo sans outPath, since writeJSON will otherwise serialize sourceInfo like derivation
lib.filterAttrs (key: val: !builtins.elem key ["outPath"]) (input.sourceInfo or {}) 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
) )
); );