Add helix configuration
This commit is contained in:
parent
4b09bbb3f3
commit
155fc96eaa
|
@ -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 {
|
||||||
|
|
7
modules/workstation/home-manager/helix.nix
Normal file
7
modules/workstation/home-manager/helix.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ lib, config, ... }:
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
programs.helix.settings = mkIf config.programs.helix.enable {
|
||||||
|
theme = "nord";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue