Move rofi and emacs to home config

This commit is contained in:
2024-02-01 13:27:30 +01:00
parent b04a523645
commit 0cf00f5fbf
11 changed files with 60 additions and 6 deletions

View File

@ -25,10 +25,11 @@ in {
options.modules.rofi = { enable = mkOption { default = false; }; };
config = mkIf cfg.enable {
programs.rofi = { enable = true; };
# this would need you to config rofi using home-manager
# programs.rofi = { enable = true; };
home.file = {
".config/rofi/config.rasi".source = ../../i3/rofi/config.rasi;
};
home.packages = with pkgs; [ rofi ];
home.file = { ".config/rofi/config.rasi".source = ./config.rasi; };
};
}