home: Enable rofi program launcher

This commit is contained in:
Alexander Kobjolke 2024-02-11 15:59:34 +01:00
parent f60f5a6f40
commit 9298dd9573
2 changed files with 12 additions and 0 deletions

View file

@ -4,6 +4,7 @@
imports = [
./cli.nix
# ./programs/xmonad/default.nix
./programs/rofi/default.nix
];
home = {

View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
programs.rofi = {
enable = true;
pass = {
enable = true;
stores = [ config.programs.password-store.settings.PASSWORD_STORE_DIR ];
};
};
}