diff options
| author | Mel <einebeere@gmail.com> | 2024-10-15 15:52:11 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-10-15 15:52:11 +0200 |
| commit | c8235346fe342df4aebc3f47d4f29040162dbe61 (patch) | |
| tree | 4ca20dccf9db66203b1c9a8b1593b8d964a2fa16 /modules/home | |
| parent | 42d7140ae47ec30b84150d9b721682b30c74a1a7 (diff) | |
| download | minerals-c8235346fe342df4aebc3f47d4f29040162dbe61.tar.zst minerals-c8235346fe342df4aebc3f47d4f29040162dbe61.zip | |
Bring in bismuth configuration
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/common.nix | 40 |
1 files changed, 40 insertions, 0 deletions
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" + ]; +} |
