add broken sway module

This commit is contained in:
Miranda Marquez 2024-06-13 13:11:41 -08:00
parent 704b95dd79
commit 5c990ad496
3 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -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
View File

@ -0,0 +1,11 @@
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
{
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
terminal = "kitty";
};
};
}