feat: add rofi, fonts, dunst config, gtk theme
This commit is contained in:
20
nix/modules/rofi.nix
Normal file
20
nix/modules/rofi.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.rofi = {
|
||||
enable = lib.mkEnableOption "enable rofi";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.rofi.enable {
|
||||
home-manager.users.luca = {
|
||||
|
||||
xdg.configFile = {
|
||||
"rofi".source = ../../custom/rofi;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user