mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
updated all flakes to use nixvim
This commit is contained in:
parent
b02ddd772e
commit
1f381a46cf
1 changed files with 14 additions and 2 deletions
16
flake.nix
16
flake.nix
|
@ -46,7 +46,13 @@
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
extraSpecialArgs = { inherit user; };
|
extraSpecialArgs = { inherit user; };
|
||||||
users.${user} = import ./users/${user}.nix;
|
users.${user} = {
|
||||||
|
imports = [
|
||||||
|
(import ./users/${user}.nix)
|
||||||
|
# Add nixvim to the homemanager
|
||||||
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@ -69,7 +75,13 @@
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
extraSpecialArgs = { inherit user; };
|
extraSpecialArgs = { inherit user; };
|
||||||
users.${user} = import ./users/${user}.nix;
|
users.${user} = {
|
||||||
|
imports = [
|
||||||
|
(import ./users/${user}.nix)
|
||||||
|
# Add nixvim to the homemanager
|
||||||
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue