add broken sway module
This commit is contained in:
parent
704b95dd79
commit
5c990ad496
@ -139,6 +139,8 @@ guix
|
||||
'';
|
||||
|
||||
xdg.portal.enable = true;
|
||||
xdg.portal.config.common.default = "*";
|
||||
security.polkit.enable = true;
|
||||
services.flatpak.enable = true;
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
|
1
home.nix
1
home.nix
@ -7,6 +7,7 @@ with lib.hm.gvariant;
|
||||
./modules/shell.nix
|
||||
./modules/firefox.nix
|
||||
# ./modules/emacs.nix
|
||||
# ./modules/sway.nix
|
||||
];
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
|
11
modules/sway.nix
Normal file
11
modules/sway.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
|
||||
|
||||
{
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = rec {
|
||||
modifier = "Mod4";
|
||||
terminal = "kitty";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user