This commit is contained in:
jdonszelmann 2024-08-02 13:19:05 +02:00
parent db45954236
commit a94e2ae578
No known key found for this signature in database
GPG key ID: E0C1EA36407B2FF2
7 changed files with 140 additions and 4 deletions

View file

@ -13,9 +13,14 @@
};
t.url = "github:jdonszelmann/t-rs";
kitty-search = {
url = "github:trygveaa/kitty-kitten-search";
flake = false;
};
};
outputs = { self, home-manager, nixpkgs, flake-utils, nixvim, t }:
outputs = { self, home-manager, nixpkgs, flake-utils, nixvim, t, ... }@inputs:
let
homeManagerModules = [ nixvim.homeManagerModules.nixvim ];
@ -58,10 +63,10 @@
homeConfigurations = {
kili = mkHomeConfiguration (import ./hosts/kili/home.nix) {
extraSpecialArgs = { };
extraSpecialArgs = { inherit inputs; };
};
ori = mkHomeConfiguration (import ./hosts/ori/home.nix) {
extraSpecialArgs = { };
extraSpecialArgs = { inherit inputs; };
};
};