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.pcscd.enable = true;
services.udev.packages = [ pkgs.yubikey-personalization ]; services.udev.packages = [ pkgs.yubikey-personalization ];
environment.systemPackages = [ 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 # for `gpg --export $keyid | hokey lint` to check keys
#pkgs.haskellPackages.hopenpgp-tools #pkgs.haskellPackages.hopenpgp-tools

View file

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

View file

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

View file

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