use snowfall

This commit is contained in:
2024-02-01 12:28:31 +01:00
parent c2e80ffddd
commit d8e53f1f78
16 changed files with 160 additions and 55 deletions

View File

@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.modules.rofi;
in {
options.modules.rofi = { enable = mkOption { default = false; }; };
config = mkIf cfg.enable {
programs.rofi = { enable = true; };
home.file = {
".config/rofi/config.rasi".source = ../../i3/rofi/config.rasi;
};
};
}