cleanup nvim merge and general janitorial work
This commit is contained in:
parent
c544159576
commit
db330b546d
30 changed files with 254 additions and 1300 deletions
|
|
@ -1,11 +1,12 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
mkPkgs,
|
||||
attrs,
|
||||
...
|
||||
}: {
|
||||
"e" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
}:
|
||||
{
|
||||
e = inputs.home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = mkPkgs "x86_64-linux";
|
||||
extraSpecialArgs = {
|
||||
inherit inputs attrs;
|
||||
useGlobalPkgs = true;
|
||||
|
|
@ -20,6 +21,7 @@
|
|||
];
|
||||
};
|
||||
"minimal" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = mkPkgs "x86_64-linux";
|
||||
extraSpecialArgs = {
|
||||
inherit inputs attrs;
|
||||
targets.genericLinux.enable = true;
|
||||
|
|
@ -29,6 +31,6 @@
|
|||
inherit (attrs) username;
|
||||
};
|
||||
};
|
||||
modules = [./home.nix];
|
||||
modules = [ ./home.nix ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue