Recreated flake files

This commit is contained in:
2026-03-12 19:46:20 +01:00
parent 3bd2a99a9e
commit 36bc759878
2 changed files with 193 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
config,
pkgs,
lib,
inputs,
flakeRoot,
...
}:
let
user = import ./henrov.nix;
in
{
config = {
# User-specific configurations
home-manager.users.${user.username} = {
enable = true;
homeDirectory = user.homeDirectory;
};
};
}