hosts: steamdeck: correct nixpkgs to unstable

This commit is contained in:
2023-12-20 17:04:17 +01:00
parent 1cd51d2034
commit bc8c07914a
3 changed files with 177 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
# └─ ./home.nix
#
{ lib, inputs, nixpkgs, nixos-hardware, home-manager, home-manager-unstable, nur, user, userdmz, userserver, location, agenix, jovian-nixos, microvm, ... }:
{ lib, inputs, nixpkgs, nixpkgs-unstable, nixos-hardware, home-manager, home-manager-unstable, nur, user, userdmz, userserver, location, agenix, jovian-nixos, microvm, ... }:
let
system = "x86_64-linux"; # System architecture
@@ -82,7 +82,7 @@ in
];
};
steamdeck = lib.nixosSystem { # Laptop profile
steamdeck = nixpkgs-unstable.lib.nixosSystem { # steamdeck profile
inherit system;
specialArgs = { inherit inputs user location nixos-hardware nur agenix jovian-nixos; };
modules = [
@@ -97,7 +97,7 @@ in
nixos-hardware.nixosModules.common-pc-ssd
home-manager-unstable.nixosModules.home-manager {
nixpkgs.overlays = [
nixpkgs-unstable.overlays = [
nur.overlay
];
home-manager.useGlobalPkgs = true;