2023-01-25 17:53:02 +01:00
|
|
|
{
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
inputs.home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
# should use system nixpkgs instead of their own
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-01-25 22:12:36 +01:00
|
|
|
inputs.agenix.url = "github:oddlama/agenix";
|
|
|
|
inputs.agenix.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-25 17:53:02 +01:00
|
|
|
|
2023-01-25 22:12:36 +01:00
|
|
|
outputs = { self, nixpkgs, home-manager, agenix, ... }: let
|
2023-01-25 17:53:02 +01:00
|
|
|
system = "x86_64-linux";
|
|
|
|
in {nixosConfigurations.patricknix =
|
|
|
|
nixpkgs.lib.nixosSystem {
|
|
|
|
inherit system;
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
}
|
2023-01-25 22:12:36 +01:00
|
|
|
agenix.nixosModule
|
2023-01-25 17:53:02 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|