Recreated flake files

This commit is contained in:
2026-03-12 20:34:49 +01:00
parent 387cd991b3
commit b35fd97f96
2 changed files with 21 additions and 27 deletions
+8 -7
View File
@@ -3,7 +3,6 @@
pkgs,
lib,
inputs,
flakeRoot,
...
}:
@@ -11,11 +10,13 @@ let
user = import ./henrov.nix;
in
{
config = {
# User-specific configurations
home-manager.users.${user.username} = {
enable = true;
homeDirectory = user.homeDirectory;
};
home-manager.users.${user.username} = {
home.stateVersion = "25.11";
home.username = user.username;
home.homeDirectory = user.homeDirectory;
home.packages = with pkgs; [
direnv
git-extras
];
};
}