Move to unstable for telperion.

This commit is contained in:
Joseph Hanson 2024-04-29 10:49:52 -05:00
parent 25b496bec2
commit 4e7523cbae
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
3 changed files with 4 additions and 4 deletions

View file

@ -119,13 +119,13 @@
} }
]; ];
}; };
"telperion" = nixpkgs-stable.lib.nixosSystem { "telperion" = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = {inherit inputs outputs;}; specialArgs = {inherit inputs outputs;};
modules = [ modules = [
./nixos/telperion/configuration.nix ./nixos/telperion/configuration.nix
./nixos/common.nix ./nixos/common.nix
home-manager-stable.nixosModules.home-manager home-manager-unstable.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;

View file

@ -63,6 +63,6 @@
]; ];
home.stateVersion = "23.11"; home.stateVersion = "24.05";
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }

View file

@ -78,6 +78,6 @@
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether. # Or disable the firewall altogether.
networking.firewall.enable = false; networking.firewall.enable = false;
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "24.05"; # Did you read the comment?
} }