we just gettin started
just a few more modules, like bitwarden, syncthing, screenshots
This commit is contained in:
parent
6b87cd99c8
commit
5fa40025d0
23 changed files with 227 additions and 61 deletions
29
modules/desktop/rofi.nix
Normal file
29
modules/desktop/rofi.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
desktop = {
|
||||
rofi.enable = lib.mkEnableOption "enable rofi";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.desktop.rofi.enable {
|
||||
programs = {
|
||||
rofi = {
|
||||
enable = true;
|
||||
modes = [
|
||||
"drun"
|
||||
"run"
|
||||
"ssh"
|
||||
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue