nixos-config/sets/sway.nix

45 lines
875 B
Nix
Raw Normal View History

2020-11-17 01:51:13 +00:00
{ config, pkgs, ... }:
2020-11-26 04:20:52 +00:00
{
2021-01-10 06:27:22 +00:00
imports = [ ./fonts.nix ];
2020-11-26 04:20:52 +00:00
security.polkit.enable = true;
services = {
accounts-daemon.enable = true;
2021-08-25 18:11:39 +00:00
logind.lidSwitch = "suspend";
2020-11-26 04:20:52 +00:00
logind.extraConfig = "HandlePowerKey=suspend";
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
2020-11-17 01:51:13 +00:00
];
2020-11-26 04:20:52 +00:00
};
sound.enable = true;
environment.systemPackages = with pkgs; [
dex
glib
grim
imagemagick
libnotify
mako
polkit_gnome
slurp
waypipe
2020-11-26 04:20:52 +00:00
wf-recorder
wl-clipboard
wofi
2021-10-11 22:46:12 +00:00
wofi-emoji
2020-11-26 04:20:52 +00:00
xdg-user-dirs
xdg_utils
xsettingsd
2021-08-26 17:12:58 +00:00
swaylock
swayidle
2020-11-26 04:20:52 +00:00
];
2021-08-26 17:12:58 +00:00
hardware.opengl.enable = true;
security.pam.services.swaylock = { };
programs.dconf.enable = true;
programs.xwayland.enable = true;
home-manager.users.artemis.imports = [ ../home/sway.nix ];
2020-11-26 04:20:52 +00:00
}