vim for everybody as default
Some checks failed
Build all NixOS Configurations / nix build (push) Failing after 14s

This commit is contained in:
Ingolf Wagner 2024-08-14 16:43:55 +02:00
parent aed8c552ba
commit 33d716ea6b
Signed by: palo
GPG key ID: 76BF5F1928B9618B
4 changed files with 9 additions and 4 deletions

View file

@ -16,8 +16,14 @@ with lib;
services.pcscd.enable = true;
services.udev.packages = [ pkgs.yubikey-personalization ];
environment.systemPackages = [
pkgs.yubikey-personalization
pkgs.yubikey-personalization-gui
pkgs.yubikey-manager
pkgs.yubikey-manager-qt
# for `gpg --export $keyid | hokey lint` to check keys
#pkgs.haskellPackages.hopenpgp-tools

View file

@ -1,6 +1,7 @@
{ lib, ... }:
{
imports = [
./editor.nix
./oh-my-posh
./packages.nix
./terminal.nix

View file

@ -1,11 +1,10 @@
{ lib, ... }:
{
programs.vim = {
enable = true;
defaultEditor = true;
defaultEditor = lib.mkDefault true;
};
programs.helix = {
enable = true;
# defaultEditor = true;
};
}

View file

@ -2,7 +2,6 @@
imports = [
../common
./editor.nix
./git.nix
./gpg.nix
./gui