restructure

This commit is contained in:
2026-04-22 09:46:04 -05:00
parent cff3aec197
commit 03bec1dcaf
57 changed files with 35 additions and 44 deletions

View File

@@ -0,0 +1,23 @@
{ ... }: {
flake.homeModules.nathan = { config, lib, pkgs, ... }: {
options.homeconfig.rofi.enable = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.homeconfig.rofi.enable {
programs.rofi = {
enable = true;
package = pkgs.rofi;
cycle = true;
theme = "/home/nathan/.cache/wal/colors-rofi-dark.rasi";
};
};
};
}