mirror of
https://github.com/nix-community/home-manager
synced 2024-11-09 12:49:44 +01:00
36 lines
637 B
Nix
36 lines
637 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
|
||
|
pass = {
|
||
|
enable = true;
|
||
|
extraConfig = ''
|
||
|
# Extra config for rofi-pass
|
||
|
xdotool_delay=12
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = [
|
||
|
(self: super: { rofi-pass = pkgs.writeScriptBin "dummy-rofi-pass" ""; })
|
||
|
];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/rofi-pass/config \
|
||
|
${
|
||
|
pkgs.writeText "rofi-pass-expected-config" ''
|
||
|
# Extra config for rofi-pass
|
||
|
xdotool_delay=12
|
||
|
|
||
|
''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|