1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

SWAY removed

This commit is contained in:
Stefan Ellmauthaler 2021-12-18 02:03:40 +01:00
parent 8b1efcc732
commit 3b30f9cf09

View File

@ -1,19 +0,0 @@
{ config, pkgs, ...}:
{
config = lib.mkIf config.variable.graphical {
home-manager.users.ellmau= {
wayland.windowManager.sway = {
enable = true;
wrapperFeatures.gtk = true ;
};
home.packages = with pkgs; [
swaylock
swayidle
wl-clipboard
# mako # notification daemon
# alacritty # Alacritty is the default terminal in the config
# dmenu # Dmenu is the default in the config but i recommend wofi since its wayland native
];
};
};
}