dotfiles/modules/apps/rofi/default.nix

15 lines
265 B
Nix
Raw Normal View History

2021-09-10 11:16:49 +02:00
{ config, lib, pkgs, ... }:
let
base = (home: {
programs.rofi = {
enable = true;
# theme = ~/.dotfiles/config/rofi/dracula_old.rasi;
theme = ./dracula.rasi;
};
});
in
{
2021-09-15 00:41:46 +02:00
home-manager.users.moritz = { ... }: (base "/home/moritz/");
2021-09-10 11:16:49 +02:00
}