Files
dotnix/modules/system.nix
T
2026-07-04 04:46:11 +02:00

22 lines
384 B
Nix

{ config, pkgs, ... }:
{
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
sandbox = true;
};
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"librewolf-151.0.2-1"
"librewolf-unwrapped-151.0.2-1"
];
};
};
system = {
stateVersion = "26.05";
};
}