This commit is contained in:
Ingolf Wagner 2024-04-21 11:03:01 +02:00
parent 86d22b1559
commit d1c723d077
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
3 changed files with 12 additions and 7 deletions

View file

@ -3,6 +3,7 @@
imports = [ imports = [
../common ../common
./doom-emacs.nix ./doom-emacs.nix
./editor.nix
./git.nix ./git.nix
./gpg.nix ./gpg.nix
./i3.nix ./i3.nix
@ -10,7 +11,6 @@
./ssh.nix ./ssh.nix
./stylix.nix ./stylix.nix
./tmux.nix ./tmux.nix
./vim.nix
./yubikey.nix ./yubikey.nix
./zellij.nix ./zellij.nix
]; ];

View file

@ -0,0 +1,11 @@
{
programs.vim = {
enable = true;
defaultEditor = true;
};
programs.helix = {
enable = true;
# defaultEditor = true;
};
}

View file

@ -1,6 +0,0 @@
{
programs.vim = {
enable = true;
defaultEditor = true;
};
}