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