Stabilize server and desktop module
- Exluce hyprland for now
This commit is contained in:
parent
36ae7b2141
commit
5a593616f8
16 changed files with 15 additions and 11 deletions
18
modules/home/cli/direnv/default.nix
Normal file
18
modules/home/cli/direnv/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.cli.direnv;
|
||||
in
|
||||
{
|
||||
options.modules.cli.direnv = {
|
||||
enable = mkEnableOption ''
|
||||
Enable direnv with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue