4/30
This commit is contained in:
parent
e1fe85f763
commit
7587d91cd1
8 changed files with 146 additions and 46 deletions
29
flake.nix
29
flake.nix
|
|
@ -6,18 +6,19 @@
|
|||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs"; };
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }:
|
||||
let
|
||||
username = "e";
|
||||
in {
|
||||
nixosConfigurations = (
|
||||
import ./hosts {
|
||||
inherit (nixpkgs) lib;
|
||||
inherit nixos-hardware;
|
||||
inherit nixpkgs home-manager username;
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
||||
sops-nix.url = "github:Mic92/sops-nix";
|
||||
};
|
||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, sops-nix, ... }:
|
||||
let
|
||||
username = "e";
|
||||
in {
|
||||
nixosConfigurations = (
|
||||
import ./hosts {
|
||||
inherit (nixpkgs) lib;
|
||||
inherit nixpkgs home-manager nixos-hardware sops-nix username;
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue