summaryrefslogtreecommitdiff
path: root/hosts/oci/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/oci/home.nix')
-rw-r--r--hosts/oci/home.nix21
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;
+ };
+ };
+}