panacea/modules/gui.nix

134 lines
2.6 KiB
Nix
Raw Normal View History

2020-04-22 22:13:03 +02:00
{ config, lib, pkgs, ... }:
let tmux_config = builtins.readFile /home/coolneng/.tmux.conf;
in {
2020-04-22 22:13:03 +02:00
# Display manager
services.xserver.enable = true;
2020-05-08 21:53:52 +02:00
services.xserver.displayManager = {
2020-04-22 22:13:03 +02:00
defaultSession = "sway";
autoLogin = {
enable = true;
user = "coolneng";
};
lightdm = {
2020-04-22 22:13:03 +02:00
enable = true;
2020-11-25 00:24:04 +01:00
greeter.enable = false;
2020-04-22 22:13:03 +02:00
};
};
# Window manager
programs.sway = {
enable = true;
extraPackages = with pkgs; [
xwayland
swaylock
swayidle
swaybg
rofi
waybar
clipman
wl-clipboard
grim
slurp
light
imv
kanshi
kitty
2020-04-22 22:13:03 +02:00
];
extraSessionCommands = ''
2020-05-16 05:20:59 +02:00
export MOZ_ENABLE_WAYLAND=1
2020-11-14 16:11:00 +01:00
export MOZ_USE_XINPUT2=1
2020-04-22 22:13:03 +02:00
export GRIM_DEFAULT_DIR=/home/coolneng/Photos/Screenshots
export _JAVA_AWT_WM_NONREPARENTING=1
export QT_QPA_PLATFORM=wayland
2020-11-14 16:11:00 +01:00
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
2020-04-22 22:13:03 +02:00
export SDL_VIDEODRIVER=wayland
export GTK_THEME=Adapta-Eta
2020-11-14 16:11:00 +01:00
export XDG_SESSION_TYPE=wayland
export XDG_CURRENT_DESKTOP=sway
2020-04-22 22:13:03 +02:00
'';
};
2020-05-10 03:13:30 +02:00
2020-05-09 18:45:10 +02:00
# Backlight
programs.light.enable = true;
2020-04-22 22:13:03 +02:00
# Blue light filter
location = {
latitude = 35.89;
longitude = -5.32;
provider = "manual";
};
2020-04-22 22:13:03 +02:00
services.redshift = {
package = pkgs.redshift-wlr;
enable = true;
temperature = {
day = 6500;
night = 5300;
2020-04-22 22:13:03 +02:00
};
};
2020-05-09 18:45:10 +02:00
2020-04-22 22:13:03 +02:00
# Bar
programs.waybar.enable = true;
2020-05-10 03:13:30 +02:00
# GPG agent
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "gtk2";
};
2020-05-15 03:43:23 +02:00
# Tmux
programs.tmux = {
enable = true;
historyLimit = 5000;
keyMode = "vi";
shortcut = "x";
terminal = "screen-256";
baseIndex = 1;
extraConfig = tmux_config;
2020-05-15 03:43:23 +02:00
};
# Automount external storage
systemd.mounts = [
# USB
{
what = "/dev/sdb1";
where = "/usb";
mountConfig = { TimeoutSec = "5"; };
}
# SD card
{
what = "/dev/mmcblk0p1";
where = "/sdcard";
mountConfig = { TimeoutSec = "5"; };
}
];
systemd.automounts = [
# USB
{
where = "/usb";
automountConfig = { TimeoutIdleSec = "5"; };
wantedBy = [ "default.target" ];
}
# SD card
{
where = "/sdcard";
automountConfig = { TimeoutIdleSec = "5"; };
wantedBy = [ "default.target" ];
}
];
2020-07-17 11:25:43 +02:00
# Integrate pass with the browser
programs.browserpass.enable = true;
2020-11-14 16:11:00 +01:00
# Enable WebRTC screensharing
services.pipewire.enable = true;
xdg.portal = {
enable = true;
gtkUsePortal = true;
extraPortals = with pkgs; [ xdg-desktop-portal-wlr xdg-desktop-portal-gtk ];
};
2020-04-22 22:13:03 +02:00
}