hmApps, refactor, clean up, break groups
This commit is contained in:
parent
49cb3c949c
commit
7cc650aea6
32 changed files with 13 additions and 69 deletions
13
hmModules/apps/feh/app.nix
Normal file
13
hmModules/apps/feh/app.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
options.feh = {
|
||||
enable = lib.mkEnableOption "Enables feh";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.feh.enable {
|
||||
programs.feh = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue