Refactor modules

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-06-13 12:20:45 +03:00
parent 0357a7bfbf
commit df315f97d6
32 changed files with 317 additions and 253 deletions

View File

@@ -0,0 +1,8 @@
{
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
}

9
common/configs/tmux.nix Normal file
View File

@@ -0,0 +1,9 @@
{
programs.tmux = {
enable = true;
clock24 = true;
historyLimit = 10000;
keyMode = "vi";
newSession = true;
};
}

3
common/configs/zsh.nix Normal file
View File

@@ -0,0 +1,3 @@
{
programs.zsh.enable = true;
}