Fix warnings

This commit is contained in:
2025-11-30 21:40:37 -05:00
parent b7eb6522b5
commit 5144300cbf
2 changed files with 8 additions and 2 deletions

View File

@@ -25,6 +25,12 @@ in
name = "FiraCode Nerd Font"; name = "FiraCode Nerd Font";
package = "${pkgs.fira-code}"; package = "${pkgs.fira-code}";
}; };
targets = {
firefox.profileNames = [ "default" ];
qt.platform = "qtct";
};
}; };
services = { services = {

View File

@@ -133,7 +133,7 @@
whois whois
wine wine
wl-clipboard wl-clipboard
inputs.nixos-needsreboot.packages.${pkgs.system}.default inputs.nixos-needsreboot.packages.${pkgs.stdenv.hostPlatform.system}.default
]; ];
@@ -256,7 +256,7 @@
supportsDryActivation = true; supportsDryActivation = true;
text = '' text = ''
echo -e "\e[36mSystem changes requiring a reboot:\e[0m" echo -e "\e[36mSystem changes requiring a reboot:\e[0m"
${inputs.nixos-needsreboot.packages.${pkgs.system}.default}/bin/nixos-needsreboot --dry-run || true ${inputs.nixos-needsreboot.packages.${pkgs.stdenv.hostPlatform.system}.default}/bin/nixos-needsreboot --dry-run || true
''; '';
}; };
}; };