This commit is contained in:
itamar 2026-04-10 22:42:37 +03:00
parent 7b8005c867
commit 4731e545bb
No known key found for this signature in database
GPG key ID: D8277CDCD4F544E9
44 changed files with 742 additions and 1233 deletions

View file

@ -1,31 +1,18 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nvf = {
url = "github:NotAShelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, nvf, ... }: {
outputs = { self, nixpkgs, home-manager, ... }: {
nixosConfigurations.navi = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
./hardware-configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.laniakea = import ./laniakea/home.nix;
home-manager.extraSpecialArgs = { inherit nvf; };
}
./configuration.nix
];
};
};