ADD sway initial configuration

main
Alexandre LUCAZEAU 2023-10-31 16:51:15 +01:00
parent 99fb4d9338
commit a9baa4d7e1
1 changed files with 20 additions and 0 deletions

20
modules/sway.nix Normal file
View File

@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
programs.sway = {
enable = true;
wrapperFeatures.gtk = true; # so that gtk works properly
extraPackages = with pkgs; [
swaylock
swayidle
wl-clipboard
wf-recorder
mako # notification daemon
grim
slurp
alacritty
wofi
];
};
programs.waybar.enable = true;
services.xserver.layout = "fr";
}