aaaa
aa
This commit is contained in:
parent
c8d762ee59
commit
7e3bf4a4df
4 changed files with 14 additions and 6 deletions
|
|
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,10 +5,7 @@
|
|||
config,
|
||||
outputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
debug = builtins.trace "Heloooo";
|
||||
in {
|
||||
}: {
|
||||
imports = [
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
# The home.packages option allows you to install Nix packages into your
|
||||
# environment.
|
||||
home.packages = [
|
||||
|
||||
alejandra # formatter
|
||||
fd-find
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@
|
|||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit inputs outputs;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue