183 lines
5.4 KiB
Nix
183 lines
5.4 KiB
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
let
|
|
nathan = config.nathan;
|
|
in
|
|
with lib;
|
|
{
|
|
config = mkIf nathan.programs.swaywm.enable (
|
|
let
|
|
swaylock-command = "${pkgs.swaylock-effects}/bin/swaylock --screenshots --grace 30 --indicator --clock --timestr \"%-I:%M:%S %p\" --datestr \"%A %Y-%M-%d\" --effect-blur 20x3";
|
|
in
|
|
{
|
|
#########################
|
|
## Sway
|
|
#########################
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
systemdIntegration = true;
|
|
wrapperFeatures = {
|
|
base = true;
|
|
gtk = true;
|
|
};
|
|
extraSessionCommands = ''
|
|
# Make qt theming work
|
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
'';
|
|
config = {
|
|
# Setup gaps
|
|
gaps = {
|
|
smartGaps = true;
|
|
inner = 9;
|
|
};
|
|
# disable borders
|
|
window = {
|
|
border = 0;
|
|
};
|
|
# Use windows key as modifier
|
|
modifier = "Mod4";
|
|
# Alacritty as default terminal
|
|
terminal = "alacritty";
|
|
# Use krunner (from kde) as our launcher
|
|
menu = "albert show";
|
|
# Use waybar, but through systemd
|
|
bars = [
|
|
{
|
|
command = "waybar";
|
|
}
|
|
];
|
|
# Use fira code
|
|
fonts = {
|
|
names = [ "Fira Code Nerd Font" ];
|
|
size = 10.0;
|
|
};
|
|
# Setup keybindings
|
|
keybindings =
|
|
let
|
|
modifer = "Mod4";
|
|
in
|
|
lib.mkOptionDefault {
|
|
"${modifer}+q" = "kill";
|
|
"${modifer}+z" = "exec ${swaylock-command}";
|
|
## Sreenshot keybinds
|
|
# Copy area to clipboard
|
|
"${modifer}+x" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot copy area";
|
|
# Copy window to clipboard
|
|
"${modifer}+Ctrl+x" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot copy window";
|
|
# Clpy entire output to clipboard
|
|
"${modifer}+Alt+x" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot copy output";
|
|
};
|
|
# Startup applications
|
|
startup = [
|
|
# Albert, the launcher
|
|
{ command = "albert"; }
|
|
# Mako, the notification daemon
|
|
{ command = "mako"; }
|
|
];
|
|
# Other stuff
|
|
};
|
|
# disable transparency for minecraft
|
|
extraConfig = ''
|
|
for_window [title=".*Minecraft.*"] opacity 1
|
|
'';
|
|
};
|
|
#########################
|
|
## Mako (notifications)
|
|
#########################
|
|
programs.mako = {
|
|
enable = true;
|
|
# Selenized color scheme
|
|
borderColor = "#f275be";
|
|
backgroundColor = "#184956";
|
|
textColor = "#adbcbc";
|
|
# Border configuration
|
|
borderSize = 3;
|
|
# Use Fira Code for font
|
|
font = "Fira Code Nerd Font 10";
|
|
# Group by application
|
|
groupBy = "app-name";
|
|
# Bottom right corner
|
|
anchor = "bottom-right";
|
|
# Maximum visible notifications
|
|
maxVisible = 10;
|
|
# Sort by time in descending order (newest first)
|
|
sort = "-time";
|
|
};
|
|
#########################
|
|
## Swayidle
|
|
#########################
|
|
services.swayidle = {
|
|
enable = true;
|
|
timeouts = [
|
|
# Lock the screen after 5 minutes of inactivity
|
|
{
|
|
timeout = 300;
|
|
command = builtins.replaceStrings [ "%" ] [ "%%" ] swaylock-command;
|
|
}
|
|
# Turn off the displays after 10 minutes of inactivity
|
|
{
|
|
timeout = 600;
|
|
command = "swaymsg \"output * dpms off\"";
|
|
resumeCommand = "swaymsg \"output * dpms on\"";
|
|
}
|
|
];
|
|
};
|
|
#########################
|
|
## Waybar
|
|
#########################
|
|
programs.waybar = {
|
|
enable = true;
|
|
package = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".waybar;
|
|
};
|
|
#########################
|
|
## Alacritty
|
|
#########################
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
env = {
|
|
TERM = "xterm-256color";
|
|
ALACRITTY = "1";
|
|
};
|
|
font = {
|
|
normal.family = "FiraCode Nerd Font";
|
|
bold.family = "FiraCode Nerd Font";
|
|
italic.family = "FiraCode Nerd Font";
|
|
bold_italic.family = "FiraCode Nerd Font";
|
|
size = 9.0;
|
|
};
|
|
colors = {
|
|
primary = {
|
|
background = "0x103c48";
|
|
foreground = "0xadbcbc";
|
|
};
|
|
normal = {
|
|
black = "0x184956";
|
|
red = "0xfa5750";
|
|
green = "0x75b938";
|
|
yellow = "0xdbb32d";
|
|
blue = "0x4695f7";
|
|
magenta = "0xf275be";
|
|
cyan = "0x41c7b9";
|
|
white = "0x72898f";
|
|
};
|
|
bright = {
|
|
black = "0x2d5b69";
|
|
red = "0xff665c";
|
|
green = "0x84c747";
|
|
yellow = "0xebc13d";
|
|
blue = "0x58a3ff";
|
|
magenta = "0xff84cd";
|
|
cyan = "0x53d6c7";
|
|
white = "0xcad8d9";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
#########################
|
|
## EasyEffects
|
|
#########################
|
|
services.easyeffects.enable = true;
|
|
}
|
|
);
|
|
}
|