nixos/home/desktop/sway.nix

33 lines
523 B
Nix

{pkgs, ...}: {
imports = [
# ./swaylock.nix
# ./eww.nix
./waybar.nix
./gtk.nix
./dunst.nix
./rofi.nix
];
home.packages = with pkgs; [
pipewire
wireplumber
wl-clipboard
swayimg
hyprpaper
brightnessctl
];
programs.rofi.package = pkgs.rofi-wayland;
wayland.windowManager.sway = {
enable = true;
config = {
gaps = {
inner = 5;
left = 20;
right = 20;
top = 5;
bottom = 5;
};
bars = null;
};
};
}