Compare commits
No commits in common. "4ba2a6c647146e762800110a8ccca99364f806cd" and "9fa75cd52254d79997054bbc8373f00c133eddf6" have entirely different histories.
4ba2a6c647
...
9fa75cd522
|
@ -10,6 +10,7 @@ in
|
|||
pkgs.wl-clipboard
|
||||
pkgs.kcalc
|
||||
];
|
||||
sops.secrets."gnome-keyring/${config.home.username}" = { };
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
systemd.variables = [ "all" ];
|
||||
|
|
|
@ -29,6 +29,10 @@ let
|
|||
if [[ "$fullscreen_on_same_ws" == "" ]]; then
|
||||
hyprctl dispatch focuswindow address:''${addr}
|
||||
else
|
||||
# If we want to focus app_A and app_B is fullscreen on the same workspace,
|
||||
# app_A will get focus, but app_B will remain on top.
|
||||
# This monstrosity is to make sure app_A will end up on top instead.
|
||||
# XXX: doesn't handle fullscreen 0, but I don't care.
|
||||
notify-send 'Complex switch' "$window"
|
||||
hyprctl --batch "dispatch focuswindow address:''${fullscreen_on_same_ws}; dispatch fullscreen 1; dispatch focuswindow address:''${addr}; dispatch fullscreen 1"
|
||||
fi
|
||||
|
|
117
system/modules/sway.nix
Normal file
117
system/modules/sway.nix
Normal file
|
@ -0,0 +1,117 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
dbus-sway-environment = pkgs.writeTextFile {
|
||||
name = "dbus-sway-environment";
|
||||
destination = "/bin/dbus-sway-environment";
|
||||
executable = true;
|
||||
|
||||
text = ''
|
||||
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
||||
systemctl --user stop pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr
|
||||
systemctl --user start pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr
|
||||
'';
|
||||
};
|
||||
|
||||
configure-gtk = pkgs.writeTextFile {
|
||||
name = "configure-gtk";
|
||||
destination = "/bin/configure/-gtk";
|
||||
executable = true;
|
||||
text =
|
||||
let
|
||||
schema = pkgs.gsettings-desktop-schemas;
|
||||
datadir = "${schema}/share/gsetting-schemas/${schema.name}";
|
||||
in
|
||||
''
|
||||
export XDG_DATA_DIRS=${datadir}:$XDG_DATA_DIRS
|
||||
gnome_schema=org.gnome.desktop.interface
|
||||
gsettings set $gnome_schema gtk-theme 'WhiteSur-dark'
|
||||
gsettings set $gnome_schema cursor-theme 'capitaine-cursors-white'
|
||||
'';
|
||||
};
|
||||
|
||||
gnome-keyring-greetd-integration = pkgs.writeTextFile {
|
||||
name = "gnome-keyring-greetd-integration";
|
||||
destination = "/etc/pam.d/greetd";
|
||||
text = ''
|
||||
#%PAM-1.0
|
||||
|
||||
auth required pam_securetty.so
|
||||
auth requisite pam_nologin.so
|
||||
auth include system-local-login
|
||||
auth optional pam_gnome_keyring.so
|
||||
account include system-local-login
|
||||
session include system-local-login
|
||||
session optional pam_gnome_keyring.so auto_start
|
||||
'';
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.light.enable = true;
|
||||
users.users.tigor.extraGroups = [ "video" ];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
dbus-sway-environment
|
||||
configure-gtk
|
||||
gnome-keyring-greetd-integration
|
||||
|
||||
alacritty
|
||||
sway
|
||||
wayland
|
||||
xdg-utils
|
||||
glib
|
||||
whitesur-icon-theme
|
||||
grim
|
||||
slurp
|
||||
wl-clipboard
|
||||
capitaine-cursors
|
||||
swayfx
|
||||
];
|
||||
|
||||
services.dbus.enable = true;
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
wlr.enable = true;
|
||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
};
|
||||
|
||||
programs.sway = {
|
||||
enable = true;
|
||||
wrapperFeatures.gtk = true;
|
||||
};
|
||||
|
||||
# programs.regreet.enable = true;
|
||||
# login manager
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time -r --cmd ${pkgs.swayfx}/bin/sway";
|
||||
user = "tigor";
|
||||
};
|
||||
terminal = {
|
||||
vt = 7;
|
||||
};
|
||||
};
|
||||
# # clear bootlogs when greetd starts
|
||||
# serviceConfig = {
|
||||
# Type = "idle";
|
||||
# StandardInput = "tty";
|
||||
# StandardOutput = "tty";
|
||||
# StandardError = "journal";
|
||||
# TTYReset = true;
|
||||
# TTYVHangup = true;
|
||||
# TTYVTDisallocate = true;
|
||||
# };
|
||||
};
|
||||
|
||||
### Securities
|
||||
|
||||
# Allow swaylock to use PAM
|
||||
security.pam.services.swaylock = { };
|
||||
security.polkit.enable = true;
|
||||
|
||||
# Save passwords, etc like wifi passwords
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
programs.ssh.startAgent = true;
|
||||
}
|
Loading…
Reference in a new issue