From c8235346fe342df4aebc3f47d4f29040162dbe61 Mon Sep 17 00:00:00 2001 From: Mel Date: Tue, 15 Oct 2024 15:52:11 +0200 Subject: Bring in bismuth configuration Signed-off-by: Mel --- modules/home/common.nix | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 modules/home/common.nix (limited to 'modules/home') diff --git a/modules/home/common.nix b/modules/home/common.nix new file mode 100644 index 0000000..8e1a1c7 --- /dev/null +++ b/modules/home/common.nix @@ -0,0 +1,40 @@ +{ pkgs, ... }: + +{ + programs = { + git = { + enable = true; + userName = "Mel"; + userEmail = "einebeere@gmail.com"; + signing = { + key = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B"; + signByDefault = true; + }; + extraConfig.init.defaultBranch = "main"; + }; + + tmux = { + enable = true; + mouse = true; + keyMode = "vi"; + plugins = with pkgs.tmuxPlugins; [ + yank fpp open fuzzback + ]; + }; + + fish = { + enable = true; + interactiveShellInit = '' + set fish_greeting + ''; + }; + + zoxide = { enable = true; enableFishIntegration = true; }; + starship = { enable = true; enableFishIntegration = true; }; + direnv = { enable = true; }; + }; + + home.sessionPath = [ + "$HOME/.local/share/JetBrains/Toolbox/scripts" + ]; +} -- cgit 1.4.1