aa
This commit is contained in:
LunarAkai 2025-03-14 21:15:05 +01:00
commit 7e3bf4a4df
4 changed files with 14 additions and 6 deletions

View file

@ -34,7 +34,13 @@
};
homeConfigurations = {
"luna@hummingbird" = mkHome "x86_64-linux" ./home-manager/luna/home.nix;
"luna" = lib.homeManagerConfiguration {
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = {inherit inputs outputs;};
modules = [
./home-manager/luna/hummingbird.nix
];
};
};
};
}

View file

@ -5,10 +5,7 @@
config,
outputs,
...
}:
let
debug = builtins.trace "Heloooo";
in {
}: {
imports = [
];

View file

@ -13,6 +13,7 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
alejandra # formatter
fd-find
];
}

View file

@ -6,6 +6,10 @@
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {
inherit inputs outputs;
};
}