refactor(gui): remove unrelated configuration
This commit is contained in:
parent
08e4228cde
commit
c2ec169a17
|
@ -2,56 +2,6 @@
|
||||||
, lib
|
, lib
|
||||||
, config
|
, config
|
||||||
, ... }: with lib; mkIf config.passthrough.gui {
|
, ... }: with lib; mkIf config.passthrough.gui {
|
||||||
wayland.windowManager.sway = {
|
|
||||||
enable = true;
|
|
||||||
swaynag.enable = true;
|
|
||||||
config = {
|
|
||||||
modifier = "Mod4";
|
|
||||||
keybindings = let
|
|
||||||
modifier = config.wayland.windowManager.sway.config.modifier;
|
|
||||||
in mkOptionDefault {
|
|
||||||
XF86MonBrightnessUp = "light -A 5";
|
|
||||||
XF86MonBrightnessDown = "light -U 5";
|
|
||||||
|
|
||||||
"Control+Alt+l" = "exec ${pkgs.swaylock}/bin/swaylock -c 000000";
|
|
||||||
"Print" = "exec ${pkgs.grim}/bin/grim - | ${pkgs.wl-clipboard}/bin/wl-copy";
|
|
||||||
"${modifier}+Print" = "exec ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.wl-clipboard}/bin/wl-copy";
|
|
||||||
"${modifier}+q" = "exec google-chrome-stable";
|
|
||||||
};
|
|
||||||
|
|
||||||
menu = "wofi -show drun -modi drun";
|
|
||||||
bars = [ {
|
|
||||||
mode = "dock";
|
|
||||||
position = "bottom";
|
|
||||||
workspaceButtons = true;
|
|
||||||
workspaceNumbers = true;
|
|
||||||
statusCommand = "${pkgs.i3status}/bin/i3status";
|
|
||||||
fonts = {
|
|
||||||
names = [ "monospace" ];
|
|
||||||
size = 8.0;
|
|
||||||
};
|
|
||||||
trayOutput = "primary";
|
|
||||||
# sets transparency
|
|
||||||
colors.background = "00000000";
|
|
||||||
} ];
|
|
||||||
gaps.inner = 12;
|
|
||||||
gaps.outer = 5;
|
|
||||||
# dodge the status bar
|
|
||||||
gaps.bottom = 0;
|
|
||||||
|
|
||||||
input."*".natural_scroll = "enabled";
|
|
||||||
input."type:touchpad".tap = "enabled";
|
|
||||||
output."*".bg = "${../../share/54345906_p0.jpg} fill";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# application menu setup
|
|
||||||
programs.wofi = {
|
|
||||||
enable = true;
|
|
||||||
settings.mode = "drun";
|
|
||||||
settings.allow_images = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# cursor theme
|
# cursor theme
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
package = pkgs.bibata-cursors;
|
package = pkgs.bibata-cursors;
|
||||||
|
|
|
@ -2,49 +2,27 @@
|
||||||
, lib
|
, lib
|
||||||
, config
|
, config
|
||||||
, ... }: with lib; let
|
, ... }: with lib; let
|
||||||
cfg = config.home.sway;
|
|
||||||
gui = with config.faucet.gui; ( enable && session );
|
gui = with config.faucet.gui; ( enable && session );
|
||||||
in {
|
in {
|
||||||
options.home = {
|
|
||||||
sway = {};
|
|
||||||
};
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
users.homeModules = [
|
users.homeModules = [
|
||||||
# this module passes gui configuration to home-manager
|
# this module passes gui configuration to home-manager
|
||||||
{ passthrough.gui = gui; }
|
{ passthrough.gui = gui; }
|
||||||
# this module passes sway-specific config values
|
|
||||||
{ passthrough.sway = cfg; }
|
|
||||||
];
|
];
|
||||||
users.adminGroups = mkIf gui [ "video" ];
|
users.adminGroups = mkIf gui [ "video" ];
|
||||||
|
|
||||||
# themes and icons
|
# themes and icons
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; mkIf gui [
|
||||||
whitesur-gtk-theme whitesur-icon-theme
|
whitesur-gtk-theme whitesur-icon-theme
|
||||||
bibata-cursors
|
bibata-cursors
|
||||||
];
|
];
|
||||||
|
|
||||||
services.xserver.displayManager.sessionPackages =
|
|
||||||
mkIf gui [ (pkgs.writeTextFile {
|
|
||||||
name = "sway-session";
|
|
||||||
destination = "/share/wayland-sessions/sway.desktop";
|
|
||||||
text = ''
|
|
||||||
[Desktop Entry]
|
|
||||||
Name=Sway
|
|
||||||
Comment=An i3-compatible Wayland compositor
|
|
||||||
Exec=sway --unsupported-gpu
|
|
||||||
Type=Application
|
|
||||||
'';
|
|
||||||
} // { providedSessions = [ pkgs.sway.meta.mainProgram ]; }) ];
|
|
||||||
|
|
||||||
security = mkIf gui {
|
security = mkIf gui {
|
||||||
polkit.enable = true;
|
polkit.enable = true;
|
||||||
pam.services.swaylock = { };
|
|
||||||
};
|
};
|
||||||
fonts.enableDefaultPackages = mkIf gui true;
|
fonts.enableDefaultPackages = mkIf gui true;
|
||||||
programs = mkIf gui {
|
programs = mkIf gui {
|
||||||
dconf.enable = true;
|
dconf.enable = true;
|
||||||
light.enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue