nix-config/flake.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

2023-01-25 17:53:02 +01:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
# should use system nixpkgs instead of their own
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-01-28 18:41:31 +01:00
flake-utils.url = "github:numtide/flake-utils";
2023-01-25 17:53:02 +01:00
};
outputs = {
self,
nixpkgs,
home-manager,
agenix,
2023-01-28 18:41:31 +01:00
flake-utils,
...
2023-01-28 18:41:31 +01:00
} @ inputs: let
system = "x86_64-linux";
2023-01-28 18:41:31 +01:00
in
{
nixosConfigurations.patricknix = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
agenix.nixosModules.default
2023-01-28 18:41:31 +01:00
{
nix.registry = {
nixpkgs.flake = nixpkgs;
p.flake = nixpkgs;
pkgs.flake = nixpkgs;
};
}
];
};
}
// flake-utils.lib.eachSystem [system] (localSystem: {
apps = import ./apps/rekey.nix inputs localSystem;
});
2023-01-25 17:53:02 +01:00
}