nix/nixos/desktop-sway.nix

45 lines
735 B
Nix
Raw Normal View History

2021-10-13 00:47:43 +02:00
{ pkgs, ... }:
{
imports = [./desktop.nix];
programs.sway = {
enable = true;
wrapperFeatures = { gtk = true; };
extraPackages = with pkgs; [
alacritty
swayidle
swaylock-effects
mako
bemenu
# - bar
i3blocks
acpi
lm_sensors
# - tools
wl-clipboard
2021-11-06 13:12:01 +01:00
wdisplays
2021-10-13 00:47:43 +02:00
ponymix
brightnessctl
gammastep
grim
slurp
];
};
2021-11-26 20:03:09 +01:00
xdg.portal.wlr = {
enable = true;
settings.screencast = {
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
};
};
2021-10-13 00:47:43 +02:00
# done my sway:
# security.pam.services.swaylock = {};
# hardware.opengl.enable = true;
# fonts.enableDefaultFonts = true;
# programs.dconf.enable = true; # gtk theme
# services.acpid.enable = true;
}