diff options
Diffstat (limited to 'modules/rofi.nix')
-rw-r--r-- | modules/rofi.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/rofi.nix b/modules/rofi.nix new file mode 100644 index 0000000..e0cec29 --- /dev/null +++ b/modules/rofi.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ + xdg.configFile.rofi = { + recursive = true; + source = ../rofi/.config/rofi; + }; + xdg.configFile.rofi-pass = { + recursive = true; + source = ../rofi/.config/rofi-pass; + }; +} |