BIG refactoring
This commit is contained in:
parent
b372397342
commit
325f16a9d5
12 changed files with 343 additions and 28 deletions
|
@ -39,13 +39,18 @@
|
||||||
enableDirenv = true;
|
enableDirenv = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
wms = {
|
||||||
|
wayland = {
|
||||||
|
enable = true;
|
||||||
|
hyprland.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
programs = {
|
programs = {
|
||||||
vesktop.enable = true;
|
vesktop.enable = true;
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
hyprland.enable = true;
|
|
||||||
newsboat.enable = true;
|
newsboat.enable = true;
|
||||||
foot.enable = true;
|
foot.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
|
|
6
modules/wms/wayland/default.nix
Normal file
6
modules/wms/wayland/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, inputs, ... }: {
|
||||||
|
imports =
|
||||||
|
[ inputs.niri.nixosModules.niri ];
|
||||||
|
;
|
||||||
|
programs.niri.enable = true;
|
||||||
|
}
|
0
modules/wms/wayland/hypr/default.nix
Normal file
0
modules/wms/wayland/hypr/default.nix
Normal file
0
modules/wms/wayland/hypr/idle.nix
Normal file
0
modules/wms/wayland/hypr/idle.nix
Normal file
|
@ -14,25 +14,6 @@ in {
|
||||||
options.modules.programs.hyprland.enable = mkEnableOption "hyprland";
|
options.modules.programs.hyprland.enable = mkEnableOption "hyprland";
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
# Session variables for Hyprland
|
|
||||||
environment.sessionVariables = {
|
|
||||||
LIBVA_DRIVER_NAME = "nvidia";
|
|
||||||
GTK_USE_PORTAL = "1";
|
|
||||||
NIXOS_XDG_OPEN_USE_PORTAL = "1";
|
|
||||||
XDG_CURRENT_DESKTOP = "Hyprland";
|
|
||||||
XDG_SESSION_TYPE = "wayland";
|
|
||||||
XDG_SESSION_DESKTOP = "Hyprland";
|
|
||||||
SDL_VIDEODRIVER = "wayland";
|
|
||||||
CLUTTER_BACKEND = "wayland";
|
|
||||||
GDK_BACKEND = "wayland";
|
|
||||||
WLR_RENDERER_ALLOW_SOFTWARE = "1";
|
|
||||||
QT_QPA_PLATFORM = "wayland";
|
|
||||||
# Needed anymore?
|
|
||||||
LIBSEAT_BACKEND = "logind";
|
|
||||||
# WLR_NO_HARDWARE_CURSORS = "1";
|
|
||||||
NIXOS_OZONE_WL = "1";
|
|
||||||
};
|
|
||||||
|
|
||||||
# xdg Portal
|
# xdg Portal
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
0
modules/wms/wayland/hypr/lock.nix
Normal file
0
modules/wms/wayland/hypr/lock.nix
Normal file
0
modules/wms/wayland/hypr/paper.nix
Normal file
0
modules/wms/wayland/hypr/paper.nix
Normal file
170
modules/wms/wayland/niri/config.nix
Normal file
170
modules/wms/wayland/niri/config.nix
Normal file
|
@ -0,0 +1,170 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
theme,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with theme.colors; {
|
||||||
|
programs.niri.settings = {
|
||||||
|
outputs."eDP-1".position = {
|
||||||
|
x = 0;
|
||||||
|
y = 0;
|
||||||
|
};
|
||||||
|
outputs."DP-2" = {
|
||||||
|
mode = {
|
||||||
|
width = 1920;
|
||||||
|
height = 1080;
|
||||||
|
refresh = 144.001;
|
||||||
|
};
|
||||||
|
position = {
|
||||||
|
x = 0;
|
||||||
|
y = -1080;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
input = {
|
||||||
|
keyboard.xkb = {
|
||||||
|
layout = "pl";
|
||||||
|
options = "caps:escape";
|
||||||
|
};
|
||||||
|
touchpad = {
|
||||||
|
# disable when typing /trackpointing
|
||||||
|
dwt = true;
|
||||||
|
dwtp = true;
|
||||||
|
natural-scroll = true;
|
||||||
|
click-method = "clickfinger";
|
||||||
|
};
|
||||||
|
focus-follows-mouse = true;
|
||||||
|
warp-mouse-to-focus = true;
|
||||||
|
trackpoint.accel-speed = 0.001;
|
||||||
|
};
|
||||||
|
|
||||||
|
layout = {
|
||||||
|
gaps = 16;
|
||||||
|
center-focused-column = "never";
|
||||||
|
preset-column-widths = [
|
||||||
|
{proportion = 0.333;}
|
||||||
|
{proportion = 0.5;}
|
||||||
|
{proportion = 0.666;}
|
||||||
|
];
|
||||||
|
default-column-width = {proportion = 0.5;};
|
||||||
|
|
||||||
|
focus-ring = {
|
||||||
|
enable = true;
|
||||||
|
width = 2;
|
||||||
|
active.color = "#${accent}";
|
||||||
|
inactive.color = "#${overlay0}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
animations = let
|
||||||
|
butter = {
|
||||||
|
spring = {
|
||||||
|
damping-ratio = 0.75;
|
||||||
|
epsilon = 0.00010;
|
||||||
|
stiffness = 400;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
smooth = {
|
||||||
|
spring = {
|
||||||
|
damping-ratio = 0.58;
|
||||||
|
epsilon = 0.00010;
|
||||||
|
stiffness = 735;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
slowdown = 1.3;
|
||||||
|
horizontal-view-movement = butter;
|
||||||
|
window-movement = butter;
|
||||||
|
workspace-switch = butter;
|
||||||
|
window-open = smooth;
|
||||||
|
window-close = smooth;
|
||||||
|
};
|
||||||
|
|
||||||
|
window-rules = [
|
||||||
|
{
|
||||||
|
geometry-corner-radius = let radius =8.0; in{
|
||||||
|
bottom-left = radius;
|
||||||
|
bottom-right = radius;
|
||||||
|
top-left = radius;
|
||||||
|
top-right = radius;
|
||||||
|
};
|
||||||
|
clip-to-geometry= true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
binds = with config.lib.niri.actions; let
|
||||||
|
sh = spawn "sh" "-c";
|
||||||
|
in {
|
||||||
|
"Mod+Return" = {
|
||||||
|
action = spawn "${pkgs.foot}/bin/foot";
|
||||||
|
cooldown-ms = 500;
|
||||||
|
};
|
||||||
|
"Mod+Space".action = spawn "${pkgs.fuzzel}/bin/fuzzel";
|
||||||
|
"Mod+V".action = sh "${pkgs.cliphist}/bin/cliphist list | fuzzel --dmenu | cliphist decode | wl-copy";
|
||||||
|
"Mod+Shift+Period".action = spawn "emoji";
|
||||||
|
|
||||||
|
"XF86AudioRaiseVolume".action = spawn "pamixer" "-i" "5";
|
||||||
|
"XF86AudioLowerVolume".action = spawn "pamixer" "-d" "5";
|
||||||
|
"XF86AudioMute".action = spawn "pamixer" "-t";
|
||||||
|
"XF86AudioMicMute".action = spawn "micmute";
|
||||||
|
|
||||||
|
"XF86MonBrightnessUp".action = spawn "brightnessctl" "set" "+5%";
|
||||||
|
"XF86MonBrightnessDown".action = spawn "brightnessctl" "set" "5%-";
|
||||||
|
|
||||||
|
"Super+WheelScrollDown".action = focus-workspace-down;
|
||||||
|
"Super+WheelScrollDown".cooldown-ms = 500;
|
||||||
|
"Super+WheelScrollUp".action = focus-workspace-up;
|
||||||
|
"Super+WheelScrollUp".cooldown-ms = 500;
|
||||||
|
"Super+WheelScrollRight".action = focus-column-right;
|
||||||
|
"Super+WheelScrollLeft".action = focus-column-left;
|
||||||
|
|
||||||
|
"Super+H".action = focus-column-left;
|
||||||
|
"Super+L".action = focus-column-right;
|
||||||
|
"Super+J".action = focus-workspace-down;
|
||||||
|
"Super+K".action = focus-workspace-up;
|
||||||
|
"Super+Left".action = focus-column-left;
|
||||||
|
"Super+Right".action = focus-column-right;
|
||||||
|
"Super+Down".action = focus-window-down;
|
||||||
|
"Super+Up".action = focus-window-up;
|
||||||
|
|
||||||
|
"Super+Print".action = screenshot-window;
|
||||||
|
"Super+Shift+Print".action = screenshot-screen;
|
||||||
|
"Super+Shift+S".action = screenshot;
|
||||||
|
|
||||||
|
"Super+Ctrl+H".action = move-column-left;
|
||||||
|
"Super+Ctrl+J".action = move-window-down;
|
||||||
|
"Super+Ctrl+K".action = move-window-up;
|
||||||
|
"Super+Ctrl+L".action = move-column-right;
|
||||||
|
|
||||||
|
"Super+U".action = move-workspace-down;
|
||||||
|
"Super+I".action = move-workspace-up;
|
||||||
|
|
||||||
|
"Super+Minus".action = set-column-width "-10%";
|
||||||
|
"Super+Equal".action = set-column-width "+10%";
|
||||||
|
"Super+Shift+Minus".action = set-window-height "-10%";
|
||||||
|
"Super+Shift+Equal".action = set-window-height "+10%";
|
||||||
|
|
||||||
|
"Super+Shift+H".action = focus-monitor-left;
|
||||||
|
"Super+Shift+J".action = focus-monitor-down;
|
||||||
|
"Super+Shift+K".action = focus-monitor-up;
|
||||||
|
"Super+Shift+L".action = focus-monitor-right;
|
||||||
|
|
||||||
|
"Super+Shift+Ctrl+H".action = move-column-to-monitor-left;
|
||||||
|
"Super+Shift+Ctrl+J".action = move-column-to-monitor-down;
|
||||||
|
"Super+Shift+Ctrl+K".action = move-column-to-monitor-up;
|
||||||
|
"Super+Shift+Ctrl+L".action = move-column-to-monitor-right;
|
||||||
|
|
||||||
|
"Super+R".action = switch-preset-column-width;
|
||||||
|
"Super+F".action = maximize-column;
|
||||||
|
"Super+Shift+F".action = fullscreen-window;
|
||||||
|
"Super+C".action = center-column;
|
||||||
|
|
||||||
|
"Mod+Q".action = close-window;
|
||||||
|
};
|
||||||
|
|
||||||
|
prefer-no-csd = true;
|
||||||
|
hotkey-overlay.skip-at-startup = true;
|
||||||
|
screenshot-path = "~/pics/ss/ss%Y-%m-%d %H-%M-%S.png";
|
||||||
|
};
|
||||||
|
}
|
52
modules/wms/wayland/niri/default.nix
Normal file
52
modules/wms/wayland/niri/default.nix
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
theme,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
mkService = lib.recursiveUpdate {
|
||||||
|
Unit.PartOf = ["graphical-session.target"];
|
||||||
|
Unit.After = ["graphical-session.target"];
|
||||||
|
Install.WantedBy = ["graphical-session.target"];
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
imports = [./config.nix];
|
||||||
|
home.packages = with pkgs; [pamixer];
|
||||||
|
services = {
|
||||||
|
wlsunset = {
|
||||||
|
# TODO: fix opaque red screen issue
|
||||||
|
enable = true;
|
||||||
|
latitude = "52.0";
|
||||||
|
longitude = "21.0";
|
||||||
|
temperature = {
|
||||||
|
day = 6200;
|
||||||
|
night = 3750;
|
||||||
|
};
|
||||||
|
systemdTarget = "niri.service";
|
||||||
|
};
|
||||||
|
cliphist.enable = true;
|
||||||
|
};
|
||||||
|
systemd.user.targets = {
|
||||||
|
# fake a tray to let apps start
|
||||||
|
# https://github.com/nix-community/home-manager/issues/2064
|
||||||
|
tray = {
|
||||||
|
Unit = {
|
||||||
|
Description = "Home Manager System Tray";
|
||||||
|
Requires = ["graphical-session-pre.target"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user.services = {
|
||||||
|
swaybg = mkService {
|
||||||
|
Unit = {
|
||||||
|
Description = "Wallpaper chooser";
|
||||||
|
After = "niri.service";
|
||||||
|
};
|
||||||
|
Service = {
|
||||||
|
ExecStart = "${lib.getExe pkgs.swaybg} -i ${theme.wallpaper}";
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
28
modules/wms/wayland/services.nix
Normal file
28
modules/wms/wayland/services.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ pkgs, inputs, config, ... }: {
|
||||||
|
|
||||||
|
programs.niri = {
|
||||||
|
enable = true;
|
||||||
|
package = inputs.niri.packages.${pkgs.system}.niri-unstable;
|
||||||
|
};
|
||||||
|
services = {
|
||||||
|
greetd = {
|
||||||
|
enable = true;
|
||||||
|
settings = rec {
|
||||||
|
initial_session = {
|
||||||
|
command = "${config.programs.niri.package}/bin/niri-session";
|
||||||
|
user = "vali";
|
||||||
|
};
|
||||||
|
default_session = initial_session;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gnome = {
|
||||||
|
# glib-networking.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# lorri.enable = true;
|
||||||
|
# udisks2.enable = true;
|
||||||
|
# printing.enable = true;
|
||||||
|
# fstrim.enable = true;
|
||||||
|
};
|
||||||
|
}
|
53
modules/wms/wayland/variables.nix
Normal file
53
modules/wms/wayland/variables.nix
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
{config, lib, ... }:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.wms.wayland;
|
||||||
|
hyprland = config.modules.wms.wayland.hyprland;
|
||||||
|
in {
|
||||||
|
options.modules.wms.wayland.enable = mkEnableOption "wayland";
|
||||||
|
options.modules.wms.wayland.hyprland.enable = mkEnableOption "hyprland";
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment = {
|
||||||
|
variables = {
|
||||||
|
NIXOS_OZONE_WL = "1";
|
||||||
|
__GL_GSYNC_ALLOWED = "0";
|
||||||
|
__GL_VRR_ALLOWED = "0";
|
||||||
|
_JAVA_AWT_WM_NONEREPARENTING = "1";
|
||||||
|
SSH_AUTH_SOCK = "/run/user/1000/keyring/ssh";
|
||||||
|
DISABLE_QT5_COMPAT = "0";
|
||||||
|
GDK_BACKEND = "wayland,x11";
|
||||||
|
ANKI_WAYLAND = "1";
|
||||||
|
DIRENV_LOG_FORMAT = "";
|
||||||
|
WLR_DRM_NO_ATOMIC = "1";
|
||||||
|
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
||||||
|
QT_QPA_PLATFORM = "wayland;xcb";
|
||||||
|
DISABLE_QT_COMPAT = "0";
|
||||||
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
||||||
|
MOZ_ENABLE_WAYLAND = "1";
|
||||||
|
WLR_BACKEND = "vulkan";
|
||||||
|
WLR_RENDERER = "vulkan";
|
||||||
|
XDG_SESSION_TYPE = "wayland";
|
||||||
|
SDL_VIDEODRIVER = "wayland";
|
||||||
|
CLUTTER_BACKEND = "wayland";
|
||||||
|
WLR_DRM_DEVICES = "/dev/dri/card1:/dev/dri/card0";
|
||||||
|
|
||||||
|
# Session variables for Hyprland
|
||||||
|
(mkIf hyprland.enable LIBVA_DRIVER_NAME = "nvidia");
|
||||||
|
GTK_USE_PORTAL = "1";
|
||||||
|
NIXOS_XDG_OPEN_USE_PORTAL = "1";
|
||||||
|
XDG_CURRENT_DESKTOP = "Hyprland";
|
||||||
|
XDG_SESSION_TYPE = "wayland";
|
||||||
|
XDG_SESSION_DESKTOP = "Hyprland";
|
||||||
|
SDL_VIDEODRIVER = "wayland";
|
||||||
|
CLUTTER_BACKEND = "wayland";
|
||||||
|
GDK_BACKEND = "wayland";
|
||||||
|
WLR_RENDERER_ALLOW_SOFTWARE = "1";
|
||||||
|
QT_QPA_PLATFORM = "wayland";
|
||||||
|
# Needed anymore?
|
||||||
|
LIBSEAT_BACKEND = "logind";
|
||||||
|
# WLR_NO_HARDWARE_CURSORS = "1";
|
||||||
|
NIXOS_OZONE_WL = "1";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,10 +1,30 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
fonts.packages = with pkgs; [
|
fonts = {
|
||||||
material-design-icons
|
packages = with pkgs; [
|
||||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
material-icons
|
||||||
noto-fonts
|
material-design-icons
|
||||||
noto-fonts-cjk-sans
|
(nerdfonts.override { fonts = [ "Iosevka" "JetBrainsMono" ]; })
|
||||||
noto-fonts-cjk-serif
|
noto-fonts
|
||||||
noto-fonts-emoji
|
noto-fonts-cjk
|
||||||
];
|
noto-fonts-cjk
|
||||||
|
noto-fonts-emoji
|
||||||
|
jetbrains-mono
|
||||||
|
lexend
|
||||||
|
];
|
||||||
|
# What does this do?
|
||||||
|
enableDefaultPackages = false;
|
||||||
|
|
||||||
|
# this fixes emoji stuff
|
||||||
|
fontconfig = {
|
||||||
|
defaultFonts = {
|
||||||
|
monospace = [
|
||||||
|
"JetBrainsMono Nerd Font"
|
||||||
|
"Noto Color Emoji"
|
||||||
|
];
|
||||||
|
sansSerif = ["Lexend" "Noto Color Emoji"];
|
||||||
|
serif = ["Noto Serif" "Noto Color Emoji"];
|
||||||
|
emoji = ["Noto Color Emoji"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue