326 current 1970-01-01 01:00:00 23.11.20240518.e7cc617 6.6.30-rt30 *
This commit is contained in:
parent
d712b4d00d
commit
3667246bf0
@ -18,6 +18,7 @@
|
|||||||
greetd.enable = true;
|
greetd.enable = true;
|
||||||
wifi.enable = true;
|
wifi.enable = true;
|
||||||
wifi.tray = true;
|
wifi.tray = true;
|
||||||
|
sway.enable = true;
|
||||||
|
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -3,50 +3,44 @@
|
|||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
environment.systemPackages = with pkgs; [
|
cfg = config.sway;
|
||||||
dbus # make dbus-update-activation-environment available in the path
|
in {
|
||||||
wayland
|
options = {
|
||||||
xdg-utils # for opening default programs when clicking links
|
sway.enable = lib.mkEnableOption "sway";
|
||||||
glib # gsettings
|
|
||||||
dracula-theme # gtk theme
|
|
||||||
gnome3.adwaita-icon-theme # default gnome cursors
|
|
||||||
swaylock
|
|
||||||
swayidle
|
|
||||||
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
|
|
||||||
wdisplays # tool to configure displays
|
|
||||||
libnotify
|
|
||||||
];
|
|
||||||
|
|
||||||
# xdg-desktop-portal works by exposing a series of D-Bus interfaces
|
|
||||||
# known as portals under a well-known name
|
|
||||||
# (org.freedesktop.portal.Desktop) and object path
|
|
||||||
# (/org/freedesktop/portal/desktop).
|
|
||||||
# The portal interfaces include APIs for file access, opening URIs,
|
|
||||||
# printing and others.
|
|
||||||
services.dbus.enable = true;
|
|
||||||
xdg.portal = {
|
|
||||||
enable = true;
|
|
||||||
wlr.enable = true;
|
|
||||||
config.common.default = ["wlr" "gtk"];
|
|
||||||
# gtk portal needed to make gtk apps happy
|
|
||||||
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.sway = {
|
config = lib.mkIf cfg.enable {
|
||||||
enable = true;
|
environment.systemPackages = with pkgs; [
|
||||||
wrapperFeatures.gtk = true;
|
dbus # make dbus-update-activation-environment available in the path
|
||||||
|
libnotify
|
||||||
|
];
|
||||||
|
|
||||||
|
# xdg-desktop-portal works by exposing a series of D-Bus interfaces
|
||||||
|
# known as portals under a well-known name
|
||||||
|
# (org.freedesktop.portal.Desktop) and object path
|
||||||
|
# (/org/freedesktop/portal/desktop).
|
||||||
|
# The portal interfaces include APIs for file access, opening URIs,
|
||||||
|
# printing and others.
|
||||||
|
services.dbus.enable = true;
|
||||||
|
xdg.portal = {
|
||||||
|
enable = true;
|
||||||
|
wlr.enable = true;
|
||||||
|
config.common.default = ["wlr" "gtk"];
|
||||||
|
# gtk portal needed to make gtk apps happy
|
||||||
|
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.sway = {
|
||||||
|
enable = true;
|
||||||
|
wrapperFeatures.gtk = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# make brightness keys work
|
||||||
|
users.users.max.extraGroups = ["video" "input"];
|
||||||
|
programs.light.enable = true;
|
||||||
|
|
||||||
|
# make swaylock work
|
||||||
|
security.pam.services.swaylock = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
# make brightness keys work
|
|
||||||
users.users.max.extraGroups = ["video"];
|
|
||||||
programs.light.enable = true;
|
|
||||||
|
|
||||||
# make swaylock work
|
|
||||||
security.pam.services.swaylock = {};
|
|
||||||
|
|
||||||
users.extraUsers.max.extraGroups = ["input"];
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user