Update to NixOS 25.05

This commit is contained in:
Nettika 2025-05-31 16:24:33 -07:00
parent 5eab965637
commit 12f5731dd1
4 changed files with 9 additions and 10 deletions

8
flake.lock generated
View file

@ -1039,16 +1039,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1734323986, "lastModified": 1748437600,
"narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=", "narHash": "sha256-hYKMs3ilp09anGO7xzfGs3JqEgUqFMnZ8GMAqI6/k04=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "394571358ce82dff7411395829aa6a3aad45b907", "rev": "7282cb574e0607e65224d33be8241eae7cfe0979",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.11", "ref": "nixos-25.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -2,7 +2,7 @@
description = "Nettika's NixOS Configurations"; description = "Nettika's NixOS Configurations";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff"; shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff";
phps.url = "github:fossar/nix-phps"; phps.url = "github:fossar/nix-phps";
}; };

View file

@ -140,6 +140,10 @@
defaultSession = "cinnamon"; defaultSession = "cinnamon";
}; };
services.power-profiles-daemon = {
enable = false;
};
services.tlp = { services.tlp = {
enable = true; enable = true;
}; };

View file

@ -14,7 +14,6 @@
nixpkgs-fmt nixpkgs-fmt
pyenv pyenv
rustup rustup
electron-fiddle
electron electron
# Languages # Languages
@ -27,8 +26,4 @@
programs.direnv = { programs.direnv = {
enable = true; enable = true;
}; };
nixpkgs.config.permittedInsecurePackages = [
"electron-24.8.6"
];
} }