nix-config/flake.nix

28 lines
662 B
Nix
Raw Normal View History

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";
};
outputs = { self, nixpkgs, home-manager, ... }: let
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;
}
];
};
pkgs = import nixpkgs {
inherit system;
};
};
}