home: setup lorri service
This commit is contained in:
parent
3196015861
commit
eb3c698f69
|
@ -10,6 +10,7 @@
|
|||
./flameshot.nix
|
||||
./git.nix
|
||||
./laptop.nix
|
||||
./lorri.nix
|
||||
./rofi.nix
|
||||
./secrets
|
||||
./ssh.nix
|
||||
|
|
17
home/lorri.nix
Normal file
17
home/lorri.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.home.lorri;
|
||||
in
|
||||
{
|
||||
options.my.home.lorri = with lib; {
|
||||
enable = (mkEnableOption "lorri daemon setup") // { default = true; };
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.lorri.enable = true;
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue