chore: stuff
This commit is contained in:
parent
6a53741183
commit
2defd19b2d
8 changed files with 267 additions and 264 deletions
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
osConfig,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
cfg = osConfig.modules.services.cliphist;
|
|
||||||
exec = pkgs.writers.writeBash "rofi-cliphist" {
|
|
||||||
makeWrapperArgs = [
|
|
||||||
"--prefix"
|
|
||||||
"PATH"
|
|
||||||
":"
|
|
||||||
"${lib.makeBinPath [ pkgs.cliphist ]}"
|
|
||||||
];
|
|
||||||
} "cliphist-rofi-img";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
programs.rofi = {
|
|
||||||
enable = true;
|
|
||||||
extraConfig.modes = [ "clipboard:${exec}" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -7,7 +7,6 @@
|
||||||
./gammastep.nix # default because I need to protect my peepers
|
./gammastep.nix # default because I need to protect my peepers
|
||||||
./swww.nix
|
./swww.nix
|
||||||
./keepassxc.nix
|
./keepassxc.nix
|
||||||
./cliphist.nix
|
|
||||||
./swayidle.nix
|
./swayidle.nix
|
||||||
./swaylock.nix
|
./swaylock.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
} -t wipe --transition-fps 144";
|
} -t wipe --transition-fps 144";
|
||||||
|
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
ProtectHome = "readonly";
|
|
||||||
BindPaths = "/run/user /home/${config.home.username}/.cache/swww";
|
BindPaths = "/run/user /home/${config.home.username}/.cache/swww";
|
||||||
|
TemporaryFileSystem = "/home /run/user /root";
|
||||||
ProtectProc = "noaccess";
|
ProtectProc = "noaccess";
|
||||||
RestrictNamespaces = true;
|
RestrictNamespaces = true;
|
||||||
CapabilityBoundingSet = "";
|
CapabilityBoundingSet = "";
|
||||||
|
|
|
@ -5,39 +5,35 @@
|
||||||
osConfig,
|
osConfig,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
conf = "${config.home.homeDirectory}/.config/rofi";
|
||||||
|
in
|
||||||
lib.mkIf config.programs.rofi.enable {
|
lib.mkIf config.programs.rofi.enable {
|
||||||
programs.rofi =
|
programs.rofi = {
|
||||||
let
|
package = pkgs.rofi-wayland;
|
||||||
conf = "${config.home.homeDirectory}/.config/rofi";
|
theme = "${conf}/themes/rounded-gray-dark.rasi";
|
||||||
in
|
terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal;
|
||||||
rec {
|
extraConfig = {
|
||||||
package = pkgs.rofi-wayland.override { inherit plugins; };
|
modes = [
|
||||||
plugins = [ pkgs.rofi-calc ];
|
"combi"
|
||||||
theme = "${conf}/themes/rounded-gray-dark.rasi";
|
"filebrowser"
|
||||||
terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal;
|
"ssh"
|
||||||
extraConfig = {
|
"drun"
|
||||||
modes = [
|
"run"
|
||||||
"combi"
|
"clipboard:${lib.my.getExe' pkgs.cliphist "cliphist-rofi-img"}"
|
||||||
"filebrowser"
|
];
|
||||||
"ssh"
|
matching = "fuzzy";
|
||||||
"drun"
|
sort = true;
|
||||||
"run"
|
sorting-method = "fzf";
|
||||||
# WARNING: ABI version mismatch
|
show-icons = true;
|
||||||
# "calc"
|
steal-focus = true;
|
||||||
"clipboard:${lib.my.getExe' pkgs.cliphist "cliphist-rofi-img"}"
|
drun-use-desktop-cache = true;
|
||||||
];
|
drun-reload-desktop-cache = true;
|
||||||
matching = "fuzzy";
|
combi-modes = [
|
||||||
sort = true;
|
"window"
|
||||||
sorting-method = "fzf";
|
"drun"
|
||||||
show-icons = true;
|
"obsidian"
|
||||||
steal-focus = true;
|
];
|
||||||
drun-use-desktop-cache = true;
|
|
||||||
drun-reload-desktop-cache = true;
|
|
||||||
combi-modes = [
|
|
||||||
"window"
|
|
||||||
"drun"
|
|
||||||
"obsidian"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,221 +7,226 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mapAttrs;
|
inherit (lib) mapAttrs mkIf;
|
||||||
|
inherit (lib.my) getExe getExe';
|
||||||
|
|
||||||
desktop = osConfig.modules.system.roles.desktop;
|
desktop = osConfig.modules.system.roles.desktop;
|
||||||
term = lib.my.getExe desktop.terminal;
|
term = lib.my.getExe desktop.terminal;
|
||||||
filemanager = lib.my.getExe desktop.filemanager;
|
filemanager = lib.my.getExe desktop.filemanager;
|
||||||
|
cliphistEnabled = osConfig.modules.services.cliphist.enable;
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
lavender = "#babbf1";
|
||||||
|
black = "#000000";
|
||||||
|
};
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
kb = {
|
||||||
|
builtin = "1:1:AT_Translated_Set_2_keyboard";
|
||||||
|
keychron = "1452:591:Keychron_K4_Keychron_K4";
|
||||||
|
keychron_bt = "1452:591:Keychron_K4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
|
||||||
in
|
in
|
||||||
lib.mkIf osConfig.programs.sway.enable {
|
lib.mkIf osConfig.programs.sway.enable {
|
||||||
|
|
||||||
services.swayidle.enable = true;
|
services.swayidle.enable = true;
|
||||||
programs.hyprlock.enable = true;
|
programs.hyprlock.enable = true;
|
||||||
|
|
||||||
wayland.windowManager.sway =
|
wayland.windowManager.sway = {
|
||||||
let
|
enable = true;
|
||||||
colors = {
|
xwayland = true;
|
||||||
lavender = "#babbf1";
|
wrapperFeatures.gtk = true;
|
||||||
black = "#000000";
|
extraConfigEarly = ''
|
||||||
};
|
exec systemctl --user import-environment PATH && systemctl --user restart xdg-desktop-portal.service
|
||||||
inputs = {
|
'';
|
||||||
kb = {
|
extraConfig = ''
|
||||||
builtin = "1:1:AT_Translated_Set_2_keyboard";
|
titlebar_padding 1
|
||||||
keychron = "1452:591:Keychron_K4_Keychron_K4";
|
floating_modifier Mod4 normal
|
||||||
keychron_bt = "1452:591:Keychron_K4";
|
bindgesture {
|
||||||
};
|
swipe:right workspace prev
|
||||||
};
|
swipe:left workspace next
|
||||||
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
|
swipe:up focus up
|
||||||
in
|
swipe:down focus down
|
||||||
{
|
}
|
||||||
enable = true;
|
workspace 1
|
||||||
xwayland = true;
|
font pango:monospace 0.001
|
||||||
wrapperFeatures.gtk = true;
|
'';
|
||||||
extraConfigEarly = ''
|
config = {
|
||||||
exec systemctl --user import-environment PATH && systemctl --user restart xdg-desktop-portal.service
|
modifier = "Mod4";
|
||||||
'';
|
bars = [ ];
|
||||||
extraConfig = ''
|
#: Keybindings {{{
|
||||||
titlebar_padding 1
|
keybindings =
|
||||||
floating_modifier Mod4 normal
|
let
|
||||||
bindgesture {
|
mod = config.wayland.windowManager.sway.config.modifier;
|
||||||
swipe:right workspace prev
|
in
|
||||||
swipe:left workspace next
|
lib.mkOptionDefault {
|
||||||
swipe:up focus up
|
"${mod}+p" = "exec ${pkgs.hyprlock}/bin/hyprlock";
|
||||||
swipe:down focus down
|
|
||||||
}
|
|
||||||
workspace 1
|
|
||||||
font pango:monospace 0.001
|
|
||||||
'';
|
|
||||||
config = {
|
|
||||||
modifier = "Mod4";
|
|
||||||
bars = [ ];
|
|
||||||
#: Keybindings {{{
|
|
||||||
keybindings =
|
|
||||||
let
|
|
||||||
mod = config.wayland.windowManager.sway.config.modifier;
|
|
||||||
in
|
|
||||||
lib.mkOptionDefault {
|
|
||||||
"${mod}+p" = "exec ${pkgs.hyprlock}/bin/hyprlock";
|
|
||||||
|
|
||||||
"${mod}+Shift+p" = "exec rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
|
"${mod}+Shift+p" = "exec rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
|
||||||
# Reload the config file
|
# Reload the config file
|
||||||
"${mod}+Shift+c" = "reload";
|
"${mod}+Shift+c" = "reload";
|
||||||
# Kill the focused window
|
# Kill the focused window
|
||||||
"${mod}+Shift+q" = "kill";
|
"${mod}+Shift+q" = "kill";
|
||||||
# Make focused window fullscreen
|
# Make focused window fullscreen
|
||||||
"${mod}+f" = "fullscreen";
|
"${mod}+f" = "fullscreen";
|
||||||
# Start launcher
|
# Start launcher
|
||||||
"${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel";
|
"${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel";
|
||||||
"${mod}+s" = "exec rofi -show clipboard -show-icons";
|
"${mod}+s" =
|
||||||
# Toggle the current focus between tiling and floating mode
|
let
|
||||||
"${mod}+Shift+space" = "floating toggle";
|
cliphist = getExe pkgs.cliphist;
|
||||||
"${mod}+Return" = "exec ${term}";
|
fuzzel = getExe pkgs.fuzzel;
|
||||||
"${mod}+e" = "exec ${filemanager}";
|
copy = getExe' pkgs.wl-clipboard "wl-copy";
|
||||||
"${mod}+x" = "layout toggle tabbed split";
|
in
|
||||||
"${mod}+Control+Left" = "workspace prev";
|
mkIf cliphistEnabled "exec ${cliphist} list | ${fuzzel} --dmenu | ${cliphist} decode | ${copy}";
|
||||||
"${mod}+Control+Right" = "workspace next";
|
# Toggle the current focus between tiling and floating mode
|
||||||
"${mod}+n" = "exec nysh msg dash toggle";
|
"${mod}+Shift+space" = "floating toggle";
|
||||||
"--locked XF86MonBrightnessUp" =
|
"${mod}+Return" = "exec ${term}";
|
||||||
"exec --no-startup-id ${pkgs.brightnessctl}/bin/brightnessctl s +10%";
|
"${mod}+e" = "exec ${filemanager}";
|
||||||
"--locked XF86MonBrightnessDown" =
|
"${mod}+x" = "layout toggle tabbed split";
|
||||||
"exec --no-startup-id ${pkgs.brightnessctl}/bin/brightnessctl s 10%-";
|
"${mod}+Control+Left" = "workspace prev";
|
||||||
"--locked XF86AudioRaiseVolume" = "exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -i 5";
|
"${mod}+Control+Right" = "workspace next";
|
||||||
"--locked XF86AudioLowerVolume" = "exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -d 5";
|
"${mod}+n" = "exec nysh msg dash toggle";
|
||||||
"--locked XF86AudioMicMute" =
|
"--locked XF86MonBrightnessUp" = "exec --no-startup-id ${getExe pkgs.brightnessctl} s +10%";
|
||||||
"exec --no-startup-id ${pkgs.pamixer}/bin/pamixer --default-source -m";
|
"--locked XF86MonBrightnessDown" = "exec --no-startup-id ${getExe pkgs.brightnessctl} s 10%-";
|
||||||
"--locked XF86AudioMute" = "exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -t";
|
"--locked XF86AudioRaiseVolume" = "exec --no-startup-id ${getExe pkgs.pamixer} -i 5";
|
||||||
"--locked XF86AudioPlay" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
"--locked XF86AudioLowerVolume" = "exec --no-startup-id ${getExe pkgs.pamixer} -d 5";
|
||||||
"--locked XF86AudioPause" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
"--locked XF86AudioMicMute" = "exec --no-startup-id ${getExe pkgs.pamixer} --default-source -m";
|
||||||
"--locked XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
"--locked XF86AudioMute" = "exec --no-startup-id ${pkgs.pamixer}/bin/pamixer -t";
|
||||||
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
"--locked XF86AudioPlay" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
||||||
"${mod}+u" =
|
"--locked XF86AudioPause" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
||||||
"exec ${pkgs.hyprshot}/bin/hyprshot -o ${config.xdg.userDirs.pictures}/screenshots -m region";
|
"--locked XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
||||||
"${mod}+Shift+u" =
|
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
||||||
"exec ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${pkgs.satty}/bin/satty -f - --fullscreen";
|
"${mod}+u" =
|
||||||
|
"exec ${getExe pkgs.hyprshot} -o ${config.xdg.userDirs.pictures}/screenshots -m region";
|
||||||
|
"${mod}+Shift+u" =
|
||||||
|
"exec ${getExe pkgs.hyprshot} --raw -m region | ${getExe pkgs.satty} -f - --fullscreen";
|
||||||
|
|
||||||
#: Workspace movement {{{
|
#: Workspace movement {{{
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+ampersand" = "workspace number 1";
|
"--input-device=${inputs.kb.builtin} ${mod}+ampersand" = "workspace number 1";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+eacute" = "workspace number 2";
|
"--input-device=${inputs.kb.builtin} ${mod}+eacute" = "workspace number 2";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+quotedbl" = "workspace number 3";
|
"--input-device=${inputs.kb.builtin} ${mod}+quotedbl" = "workspace number 3";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+apostrophe" = "workspace number 4";
|
"--input-device=${inputs.kb.builtin} ${mod}+apostrophe" = "workspace number 4";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+parenleft" = "workspace number 5";
|
"--input-device=${inputs.kb.builtin} ${mod}+parenleft" = "workspace number 5";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+minus" = "workspace number 6";
|
"--input-device=${inputs.kb.builtin} ${mod}+minus" = "workspace number 6";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+egrave" = "workspace number 7";
|
"--input-device=${inputs.kb.builtin} ${mod}+egrave" = "workspace number 7";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+underscore" = "workspace number 8";
|
"--input-device=${inputs.kb.builtin} ${mod}+underscore" = "workspace number 8";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+ccedilla" = "workspace number 9";
|
"--input-device=${inputs.kb.builtin} ${mod}+ccedilla" = "workspace number 9";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+agrave" = "workspace number 10";
|
"--input-device=${inputs.kb.builtin} ${mod}+agrave" = "workspace number 10";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ampersand" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ampersand" =
|
||||||
"move container to workspace number 1";
|
"move container to workspace number 1";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+eacute" = "move container to workspace number 2";
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+eacute" = "move container to workspace number 2";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+quotedbl" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+quotedbl" =
|
||||||
"move container to workspace number 3";
|
"move container to workspace number 3";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+apostrophe" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+apostrophe" =
|
||||||
"move container to workspace number 4";
|
"move container to workspace number 4";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+parenleft" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+parenleft" =
|
||||||
"move container to workspace number 5";
|
"move container to workspace number 5";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+minus" = "move container to workspace number 6";
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+minus" = "move container to workspace number 6";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+egrave" = "move container to workspace number 7";
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+egrave" = "move container to workspace number 7";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+underscore" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+underscore" =
|
||||||
"move container to workspace number 8";
|
"move container to workspace number 8";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ccedilla" =
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+ccedilla" =
|
||||||
"move container to workspace number 9";
|
"move container to workspace number 9";
|
||||||
"--input-device=${inputs.kb.builtin} ${mod}+Shift+agrave" = "move container to workspace number 10";
|
"--input-device=${inputs.kb.builtin} ${mod}+Shift+agrave" = "move container to workspace number 10";
|
||||||
#: }}}
|
#: }}}
|
||||||
};
|
|
||||||
#: }}}
|
|
||||||
assigns = {
|
|
||||||
"2" = [ { app_id = "firefox"; } ];
|
|
||||||
"3" = [ { app_id = "obsidian"; } ];
|
|
||||||
"4" = [
|
|
||||||
{ class = "discord"; }
|
|
||||||
{ app_id = "com.discordapp.Discord"; }
|
|
||||||
];
|
|
||||||
"5" = [ { app_id = "lollypop"; } ];
|
|
||||||
};
|
};
|
||||||
seat = {
|
#: }}}
|
||||||
"*" = {
|
assigns = {
|
||||||
xcursor_theme = "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}";
|
"2" = [ { app_id = "firefox"; } ];
|
||||||
keyboard_grouping = "none";
|
"3" = [ { app_id = "obsidian"; } ];
|
||||||
};
|
"4" = [
|
||||||
};
|
{ class = "discord"; }
|
||||||
window = {
|
{ app_id = "com.discordapp.Discord"; }
|
||||||
border = 3;
|
];
|
||||||
commands = [
|
"5" = [ { app_id = "lollypop"; } ];
|
||||||
{
|
|
||||||
command = "inhibit_idle fullscreen";
|
|
||||||
criteria = {
|
|
||||||
class = "^.*$";
|
|
||||||
app_id = "^.*$";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
command = "floating enable";
|
|
||||||
criteria.app_id = mkRegexList [
|
|
||||||
"org.keepassxc.KeePassXC"
|
|
||||||
"xdg-desktop-portal-gtk"
|
|
||||||
"org.kde.polkit-kde-authentication-agent-1"
|
|
||||||
"com.nextcloud.desktopclient.nextcloud"
|
|
||||||
"org.kde.kdeconnect.daemon"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
# Make it clear which window runs using xwayland
|
|
||||||
command = ''title_format "[XWayland] %title"'';
|
|
||||||
criteria.shell = "xwayland";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
# Nextcloud closes when its not focused, thus moving the mouse over any other window will close it
|
|
||||||
command = "move position mouse";
|
|
||||||
criteria.app_id = "com.nextcloud.desktopclient.nextcloud";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
terminal = "${term}";
|
|
||||||
colors = with colors; {
|
|
||||||
focused = {
|
|
||||||
border = lavender;
|
|
||||||
background = lavender;
|
|
||||||
text = black;
|
|
||||||
indicator = "#00d4ff";
|
|
||||||
childBorder = lavender;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
gaps = {
|
|
||||||
inner = 5;
|
|
||||||
};
|
|
||||||
#: Input {{{
|
|
||||||
input = {
|
|
||||||
"*" = {
|
|
||||||
xkb_layout = "fr,us";
|
|
||||||
xkb_options = "grp:alt_shift_toggle,compose:caps";
|
|
||||||
xkb_numlock = "enabled";
|
|
||||||
};
|
|
||||||
"${inputs.kb.builtin}" = {
|
|
||||||
xkb_layout = "fr";
|
|
||||||
};
|
|
||||||
"${inputs.kb.keychron}" = {
|
|
||||||
xkb_layout = "us";
|
|
||||||
};
|
|
||||||
"${inputs.kb.keychron_bt}" = {
|
|
||||||
xkb_layout = "us";
|
|
||||||
};
|
|
||||||
"7504:24926:ZMK_Project_TOTEM_Keyboard" = {
|
|
||||||
xkb_layout = "us";
|
|
||||||
};
|
|
||||||
"type:touchpad" = {
|
|
||||||
tap = "enabled";
|
|
||||||
natural_scroll = "enabled";
|
|
||||||
click_method = "clickfinger";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
#: }}}
|
|
||||||
#: Output {{{
|
|
||||||
output = mapAttrs (name: value: {
|
|
||||||
scale = toString value.scale;
|
|
||||||
pos = "${toString value.posX} ${toString value.posY}";
|
|
||||||
res = "${toString value.resX}x${toString value.resY}";
|
|
||||||
adaptive_sync = "on";
|
|
||||||
}) osConfig.modules.system.outputs;
|
|
||||||
#: }}}
|
|
||||||
};
|
};
|
||||||
|
seat = {
|
||||||
|
"*" = {
|
||||||
|
xcursor_theme = "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}";
|
||||||
|
keyboard_grouping = "none";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
window = {
|
||||||
|
border = 3;
|
||||||
|
commands = [
|
||||||
|
{
|
||||||
|
command = "inhibit_idle fullscreen";
|
||||||
|
criteria = {
|
||||||
|
class = "^.*$";
|
||||||
|
app_id = "^.*$";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
command = "floating enable";
|
||||||
|
criteria.app_id = mkRegexList [
|
||||||
|
"org.keepassxc.KeePassXC"
|
||||||
|
"xdg-desktop-portal-gtk"
|
||||||
|
"org.kde.polkit-kde-authentication-agent-1"
|
||||||
|
"com.nextcloud.desktopclient.nextcloud"
|
||||||
|
"org.kde.kdeconnect.daemon"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
# Make it clear which window runs using xwayland
|
||||||
|
command = ''title_format "[XWayland] %title"'';
|
||||||
|
criteria.shell = "xwayland";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
# Nextcloud closes when its not focused, thus moving the mouse over any other window will close it
|
||||||
|
command = "move position mouse";
|
||||||
|
criteria.app_id = "com.nextcloud.desktopclient.nextcloud";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
terminal = "${term}";
|
||||||
|
colors = with colors; {
|
||||||
|
focused = {
|
||||||
|
border = lavender;
|
||||||
|
background = lavender;
|
||||||
|
text = black;
|
||||||
|
indicator = "#00d4ff";
|
||||||
|
childBorder = lavender;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
gaps = {
|
||||||
|
inner = 5;
|
||||||
|
};
|
||||||
|
#: Input {{{
|
||||||
|
input = {
|
||||||
|
"*" = {
|
||||||
|
xkb_layout = "fr,us";
|
||||||
|
xkb_options = "grp:alt_shift_toggle,compose:caps";
|
||||||
|
xkb_numlock = "enabled";
|
||||||
|
};
|
||||||
|
"${inputs.kb.builtin}" = {
|
||||||
|
xkb_layout = "fr";
|
||||||
|
};
|
||||||
|
"${inputs.kb.keychron}" = {
|
||||||
|
xkb_layout = "us";
|
||||||
|
};
|
||||||
|
"${inputs.kb.keychron_bt}" = {
|
||||||
|
xkb_layout = "us";
|
||||||
|
};
|
||||||
|
"7504:24926:ZMK_Project_TOTEM_Keyboard" = {
|
||||||
|
xkb_layout = "us";
|
||||||
|
};
|
||||||
|
"type:touchpad" = {
|
||||||
|
tap = "enabled";
|
||||||
|
natural_scroll = "enabled";
|
||||||
|
click_method = "clickfinger";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
#: }}}
|
||||||
|
#: Output {{{
|
||||||
|
output = mapAttrs (name: value: {
|
||||||
|
scale = toString value.scale;
|
||||||
|
pos = "${toString value.posX} ${toString value.posY}";
|
||||||
|
res = "${toString value.resX}x${toString value.resY}";
|
||||||
|
adaptive_sync = "on";
|
||||||
|
}) osConfig.modules.system.outputs;
|
||||||
|
#: }}}
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
media.enableAll = true;
|
media.enableAll = true;
|
||||||
|
fs.nfsEnable = true;
|
||||||
|
|
||||||
system = {
|
system = {
|
||||||
roles.desktop.enable = true;
|
roles.desktop.enable = true;
|
||||||
|
@ -179,6 +180,10 @@
|
||||||
xdg-utils
|
xdg-utils
|
||||||
brightnessctl
|
brightnessctl
|
||||||
pop-icon-theme
|
pop-icon-theme
|
||||||
|
|
||||||
|
bottles
|
||||||
|
wine64
|
||||||
|
ghidra
|
||||||
];
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./media.nix
|
./media.nix
|
||||||
|
./fs.nix
|
||||||
|
|
||||||
./services
|
./services
|
||||||
./system
|
./system
|
||||||
|
|
22
options/fs.nix
Normal file
22
options/fs.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf mkEnableOption optional;
|
||||||
|
|
||||||
|
cfg = config.modules.fs;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.fs = {
|
||||||
|
nfsEnable = mkEnableOption "nfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
services.rpcbind.enable = mkIf cfg.nfsEnable true;
|
||||||
|
|
||||||
|
environment.systemPackages = optional cfg.nfsEnable pkgs.nfs-utils;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue