This commit is contained in:
Schrottkatze 2023-02-08 11:26:03 +01:00
parent 1f4d042c38
commit 5d24913bb9
2 changed files with 22 additions and 5 deletions

View file

@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-22.11";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -18,7 +19,7 @@
wordsofgod.url = "git+https://gitlab.com/obsidianical/wordsofgod.git";
};
outputs = { self, nixpkgs, home-manager, nixos-hardware, mac-brcm-fw, ... }@inputs: {
outputs = { self, nixpkgs, nixpkgs-stable, home-manager, nixos-hardware, mac-brcm-fw, ... }@inputs: {
nixosConfigurations = {
monosodium-glutamate-g = nixpkgs.lib.nixosSystem {
specialArgs = {
@ -56,7 +57,7 @@
nixos-hardware.nixosModules.apple-t2
];
};
schrottserver = nixpkgs.lib.nixosSystem {
schrottserver = nixpkgs-stable.lib.nixosSystem {
specialArgs = {
inherit inputs;
};