Pin willem to 23.11

This commit is contained in:
leonv@willem 2024-03-20 16:21:45 +01:00
parent b0f696ca7f
commit aae238f2bb
2 changed files with 47 additions and 5 deletions

View file

@ -141,14 +141,34 @@
"type": "github" "type": "github"
} }
}, },
"home-manager-stable": {
"inputs": {
"nixpkgs": [
"stable"
]
},
"locked": {
"lastModified": 1710820906,
"narHash": "sha256-2bNMraoRB4pdw/HtxgYTFeMhEekBZeQ53/a8xkqpbZc=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "022464438a85450abb23d93b91aa82e0addd71fb",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"homebrew-cask": { "homebrew-cask": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1710943557, "lastModified": 1710947875,
"narHash": "sha256-ThfEzbwCvcbpDD3wS7rNBGDh9ZuU64eI1UVnjg8caWc=", "narHash": "sha256-eZJDqqGxF68UMvbi6jD2EMl096OJfqgMM3K6dPd4OF8=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-cask", "repo": "homebrew-cask",
"rev": "f64faa9f28c817a82d1ca35a5cee57a27ffa976f", "rev": "d252a7a4de3076466ef05581fa9137a6d06b7265",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -301,14 +321,32 @@
"cask-fonts": "cask-fonts", "cask-fonts": "cask-fonts",
"darwin": "darwin", "darwin": "darwin",
"home-manager": "home-manager", "home-manager": "home-manager",
"home-manager-stable": "home-manager-stable",
"homebrew-cask": "homebrew-cask", "homebrew-cask": "homebrew-cask",
"homebrew-core": "homebrew-core", "homebrew-core": "homebrew-core",
"hyprland-contrib": "hyprland-contrib", "hyprland-contrib": "hyprland-contrib",
"mac-app-util": "mac-app-util", "mac-app-util": "mac-app-util",
"nix-homebrew": "nix-homebrew", "nix-homebrew": "nix-homebrew",
"stable": "stable",
"unstable": "unstable" "unstable": "unstable"
} }
}, },
"stable": {
"locked": {
"lastModified": 1710838473,
"narHash": "sha256-RLvwdQSENKOaLdKhNie8XqHmTXzNm00/M/THj6zplQo=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "fa9f817df522ac294016af3d40ccff82f5fd3a63",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-23.11",
"repo": "nixpkgs",
"type": "github"
}
},
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1681028828,

View file

@ -2,6 +2,7 @@
description = "Master flake for all my setups"; description = "Master flake for all my setups";
inputs = { inputs = {
stable.url = "github:nixos/nixpkgs/nixos-23.11";
unstable.url = "github:nixos/nixpkgs/nixos-unstable"; unstable.url = "github:nixos/nixpkgs/nixos-unstable";
darwin.url = "github:lnl7/nix-darwin/master"; darwin.url = "github:lnl7/nix-darwin/master";
@ -21,6 +22,9 @@
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "unstable"; home-manager.inputs.nixpkgs.follows = "unstable";
home-manager-stable.url = "github:nix-community/home-manager";
home-manager-stable.inputs.nixpkgs.follows = "stable";
hyprland-contrib.url = "github:hyprwm/contrib"; hyprland-contrib.url = "github:hyprwm/contrib";
hyprland-contrib.inputs.nixpkgs.follows = "unstable"; hyprland-contrib.inputs.nixpkgs.follows = "unstable";
@ -28,7 +32,7 @@
mac-app-util.url = "github:hraban/mac-app-util"; mac-app-util.url = "github:hraban/mac-app-util";
}; };
outputs = { unstable, home-manager, darwin, hyprland-contrib, nix-homebrew, homebrew-core, homebrew-cask, cask-fonts, ...}@inputs: { outputs = { unstable, stable, home-manager, home-manager-stable, darwin, hyprland-contrib, nix-homebrew, homebrew-core, homebrew-cask, cask-fonts, ...}@inputs: {
nixosConfigurations = { nixosConfigurations = {
gunther = unstable.lib.nixosSystem { gunther = unstable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@ -52,7 +56,7 @@
./iso/configuration.nix ./iso/configuration.nix
]; ];
}; };
willem = unstable.lib.nixosSystem { willem = stable.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
modules = [ ./willem/configuration.nix ]; modules = [ ./willem/configuration.nix ];
}; };