mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
24 lines
658 B
Nix
24 lines
658 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./sway-stubs.nix ];
|
|
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
|
|
# overriding findutils causes issues
|
|
config = {
|
|
menu = "${pkgs.dmenu}/bin/dmenu_run";
|
|
|
|
input = { "*" = { xkb_variant = "dvorak"; }; };
|
|
output = { "HDMI-A-2" = { bg = "~/path/to/background.png fill"; }; };
|
|
seat = { "*" = { hide_cursor = "when-typing enable"; }; };
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
assertFileContent home-files/.config/sway/config \
|
|
${./sway-modules.conf}
|
|
'';
|
|
}
|