Convert to flakes

Convert the install to flakes
Move home-manager into core repository
This commit is contained in:
Greg Hellings
2022-04-18 11:38:06 -05:00
parent 1326dc61a8
commit 13be0b0895
8 changed files with 356 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
name: pkgs:
{
imports = [
./bash.nix
./git.nix
./vim.nix
];
home.username = name;
home.homeDirectory = if name == "root" then "/root" else "/home/${name}";
}