misc changes
Some checks failed
Verify Nix Flake / verify_build (push) Failing after 55s

This commit is contained in:
k 2025-06-22 02:58:14 -04:00
parent a9beac4f61
commit fc3f547192
2 changed files with 12 additions and 4 deletions

View File

@ -27,8 +27,8 @@
gc.automatic = false; gc.automatic = false;
settings = { settings = {
experimental-features = ["nix-command" "flakes"]; experimental-features = ["nix-command" "flakes"];
#substituters = ["http://nix.dhilton.xyz/" "https://cache.nixos.org/"]; substituters = ["http://nix.dhilton.xyz/" "https://cache.nixos.org/"];
#trusted-public-keys = ["nix.dhilton.xyz:MOW060dF1A0/UXmPZBue9KMxCO13PHYFwx1X9hcdYZ4="]; trusted-public-keys = ["nix.dhilton.xyz:MOW060dF1A0/UXmPZBue9KMxCO13PHYFwx1X9hcdYZ4="];
}; };
}; };
@ -71,7 +71,7 @@
package = pkgs.ollama-intel; package = pkgs.ollama-intel;
}; };
auto-cpufreq = { auto-cpufreq = {
enable = true; enable = false;
settings = { settings = {
battery = { battery = {
governor = "powersave"; governor = "powersave";
@ -187,6 +187,7 @@
environment = { environment = {
sessionVariables = {MOZ_USE_XINPUT2 = "1";}; sessionVariables = {MOZ_USE_XINPUT2 = "1";};
systemPackages = with pkgs; [ systemPackages = with pkgs; [
config.boot.kernelPackages.perf
]; ];
gnome.excludePackages = (with pkgs; [ gnome.excludePackages = (with pkgs; [
atomix # puzzle game atomix # puzzle game

View File

@ -22,7 +22,6 @@
btop btop
zip zip
emacs-gtk
prismlauncher prismlauncher
steam steam
@ -40,6 +39,14 @@
enableZshIntegration = true; enableZshIntegration = true;
nix-direnv.enable = true; nix-direnv.enable = true;
}; };
emacs = {
enable = true;
package = pkgs.emacs-pgtk;
extraPackages = epkgs: [
epkgs.vterm
];
};
}; };
services = { services = {