From 57c8f86fde993d5448ae4acba47ec5305e0a164f Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 14 Nov 2025 06:59:22 +0100 Subject: [PATCH] feat(home-config): add default home configuration - Introduced a default `home-manager` configuration for user setup. - Enabled multiple CLI tools like `bash`, `fish`, `bat`, and `starship`. - Configured `home.sessionPath` to include the user's bin directory. --- homes/x86_64-linux/harald@nixtee1/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 homes/x86_64-linux/harald@nixtee1/default.nix diff --git a/homes/x86_64-linux/harald@nixtee1/default.nix b/homes/x86_64-linux/harald@nixtee1/default.nix new file mode 100644 index 0000000..b20722a --- /dev/null +++ b/homes/x86_64-linux/harald@nixtee1/default.nix @@ -0,0 +1,19 @@ +{ config, ... }: +{ + home.sessionPath = [ "$HOME/bin" ]; + + metacfg = { + user = { + enable = true; + name = config.snowfallorg.user.name; + }; + cli-apps = { + bash.enable = true; + fish.enable = true; + neovim.enable = false; + bat.enable = true; + starship.enable = true; + home-manager.enable = true; + }; + }; +}