This commit is contained in:
smayzy
2025-08-02 15:20:59 +02:00
parent 6c094967e3
commit 1f6904cbc9
6 changed files with 29 additions and 23 deletions
+3 -9
View File
@@ -1,20 +1,14 @@
{
pkgs,
lib,
config,
smayzy,
...
}:
let
inherit (lib) mkIf mkOption types;
inherit (lib) mkIf;
in
{
options.smayzy.lf.enable = mkOption {
type = types.bool;
default = false;
description = "set to true if you want to use a nvidia GC";
};
config = mkIf config.smayzy.lf.enable {
config = mkIf smayzy.base-cli-pkgs.enable {
xdg.configFile."lf/icons".source = ./icons;
programs.lf = {