24 lines
605 B
Nix
24 lines
605 B
Nix
|
{pkgs, ...}: {
|
||
|
# Enable the gnome-keyring secrets vault.
|
||
|
# Will be exposed through DBus to programs willing to store secrets.
|
||
|
services.gnome.gnome-keyring.enable = true;
|
||
|
|
||
|
# enable sway window manager
|
||
|
programs.sway = {
|
||
|
enable = true;
|
||
|
wrapperFeatures.gtk = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
grim # screenshot functionality
|
||
|
slurp # screenshot functionality
|
||
|
wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout
|
||
|
mako # notification system developed by swaywm maintainer
|
||
|
|
||
|
sway-launcher-desktop
|
||
|
foot
|
||
|
waybar
|
||
|
wayshot
|
||
|
];
|
||
|
}
|