Add helix configuration

This commit is contained in:
Victor Mignot 2024-02-10 14:19:30 +01:00
parent 4b09bbb3f3
commit 155fc96eaa
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D
2 changed files with 8 additions and 0 deletions

View file

@ -30,6 +30,7 @@ in
./gpg.nix ./gpg.nix
./communication.nix ./communication.nix
./mail.nix ./mail.nix
./helix.nix
]; ];
options.isProfessional = mkOption { options.isProfessional = mkOption {

View file

@ -0,0 +1,7 @@
{ lib, config, ... }:
with lib;
{
programs.helix.settings = mkIf config.programs.helix.enable {
theme = "nord";
};
}