mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 17:44:06 +05:30
Major config overhaul: use custom modules, setup for multi-host config, and less boilerplate
This commit is contained in:
parent
1fa8b17b07
commit
0453901d17
303 changed files with 3560 additions and 5566 deletions
14
modules/user/dmenu-scripts/default.nix
Normal file
14
modules/user/dmenu-scripts/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, ...}:
|
||||
|
||||
{
|
||||
options = {
|
||||
userSettings.dmenuScripts = {
|
||||
enable = lib.mkEnableOption "Enable collection of dmenu scripts";
|
||||
dmenuCmd = lib.mkOption {
|
||||
default = "rofi -show dmenu";
|
||||
description = "dmenu command";
|
||||
type = lib.types.str;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue