mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
32 lines
809 B
Nix
32 lines
809 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
dummy-package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out";
|
|
|
|
in {
|
|
config = {
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
package = dummy-package // { 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"; }; };
|
|
};
|
|
};
|
|
|
|
nixpkgs.overlays = [ (import ./sway-overlay.nix) ];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
assertFileContent home-files/.config/sway/config \
|
|
${./sway-modules.conf}
|
|
'';
|
|
};
|
|
}
|