chore: change config limit, remove python from system pkgs

This commit is contained in:
notohh 2023-03-19 19:31:50 -04:00
parent a1f2292470
commit d81e14234d
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -12,7 +12,7 @@
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 5;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
@ -37,8 +37,6 @@
"resolv.conf".text = "nameserver 192.168.1.45\n";
};
systemd.services.systemd-udevd.restartIfChanged = false;
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
@ -136,13 +134,10 @@
rustfmt
go
cargo
jre
nodejs
polkit_gnome
libvirt
qemu_kvm
python3Full
python3.pkgs.pip
gtk-engine-murrine
pinentry-gtk2
nfs-utils
@ -188,14 +183,14 @@
extraOptions = ''
experimental-features = nix-command flakes
warn-dirty = false
'';
settings.auto-optimise-store = true;
gc = {
'';
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
settings = {
auto-optimise-store = true;
builders-use-substitutes = true;
substituters = [
"https://hyprland.cachix.org"
@ -208,11 +203,6 @@
};
};
system.autoUpgrade = {
enable = false;
channel = "https://nixos.org/channel/nixos-unstable";
};
nixpkgs.config = {
permittedInsecurePackages = [
"qtwebkit-5.212.0-alpha4"
@ -220,6 +210,7 @@
];
allowUnfree = true;
};
system.stateVersion = "23.05";
}