diff options
| author | adikro <adikro@disroot.org> | 2026-03-01 19:57:16 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-03-01 19:57:16 +0100 |
| commit | 1be09af058424219de2aad4b9cc27ccf760d23f6 (patch) | |
| tree | bdc1177b166e1eef36763984b6862d7755a7bde8 /hosts/oci/home.nix | |
| parent | 4b41ce640c5eddcb50904331e03aac5460caa144 (diff) | |
...
Diffstat (limited to 'hosts/oci/home.nix')
| -rw-r--r-- | hosts/oci/home.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hosts/oci/home.nix b/hosts/oci/home.nix new file mode 100644 index 0000000..3ffc2ee --- /dev/null +++ b/hosts/oci/home.nix @@ -0,0 +1,21 @@ +{ username, ... }: +{ + imports = [ ../../hm/default.nix ]; + + home = { + username = "${username}"; + homeDirectory = "/home/${username}"; + stateVersion = "25.05"; + }; + + hm = { + conf.git.enable = true; + editors.nixvim.enable = true; + shell = { + cli.enable = true; + fish.enable = true; + foot.enable = true; + starship.enable = true; + }; + }; +} |
