diff options
author | Soispha <soispha@vhack.eu> | 2023-10-27 20:36:51 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-27 20:36:51 +0200 |
commit | 72b0ec03c52d790343107425669e9bd3bcdc0cc4 (patch) | |
tree | 00f178ce903d8aa3ac2761734ad1c36f1be040dc /hm/soispha/conf/rofi/default.nix | |
parent | chore(hm/soispha/conf/taskwarrior/projects): Update (diff) | |
download | nixos-config-72b0ec03c52d790343107425669e9bd3bcdc0cc4.zip |
feat(hm/conf/rofi): Init
Diffstat (limited to 'hm/soispha/conf/rofi/default.nix')
-rw-r--r-- | hm/soispha/conf/rofi/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hm/soispha/conf/rofi/default.nix b/hm/soispha/conf/rofi/default.nix new file mode 100644 index 00000000..2e0073af --- /dev/null +++ b/hm/soispha/conf/rofi/default.nix @@ -0,0 +1,8 @@ +{pkgs, ...}: { + programs.rofi = { + enable = true; + package = pkgs.rofi-wayland; + terminal = "${pkgs.alacritty}/bin/alacritty"; + theme = ./rounded-gray-dark.rasi; + }; +} |