My Nix Configuration

[flake] more config damn

pyrox.dev bcb4ff04 7068e0b6

verified
+16 -5
-1
homeModules/programs/dms/default.nix
··· 10 10 config = lib.mkIf cfg { 11 11 programs.dankMaterialShell = { 12 12 enable = true; 13 - enableSystemd = true; 14 13 enableNightMode = false; 15 14 enableDynamicTheming = false; 16 15 enableAudioWavelength = false;
+8 -4
homeModules/wayland/keybindings.nix
··· 71 71 72 72 "SUPER_SHIFT, Q, killactive" 73 73 "$mod, F, fullscreen, 0" 74 - "$mod, Space, hy3:togglefocuslayer" 75 - "SUPER_SHIFT, Space, togglefloating, active" 74 + # Super-(literal equals) 75 + "$mod, code:21, hy3:togglefocuslayer" 76 + # Super-(literal plus) 77 + "SUPER_SHIFT, code:21, togglefloating, active" 76 78 77 79 # Screenshots 78 80 "SHIFT, F3, exec, hyprshot -m output --raw -z -s | $satty" ··· 80 82 ] 81 83 ++ lib.optionals (shell == "caelestia") [ 82 84 "$mod, X, global, caelestia:session" 83 - "$mod, D, global, caelestia:launcher" 85 + ", XF86PowerOff , global, caelestia:session" 86 + "$mod, Space, global, caelestia:launcher" 84 87 ] 85 88 ++ lib.optionals (shell == "dms") [ 86 89 "$mod, X, exec, dms ipc call powermenu toggle" 90 + ", XF86PowerOff ,exec, dms ipc call powermenu toggle" 87 91 "SUPER_SHIFT, X, exec, dms ipc call lock lock" 88 - "$mod, D, exec, dms ipc call spotlight toggle" 92 + "$mod, Space, exec, dms ipc call spotlight toggle" 89 93 ]; 90 94 91 95 bindm = [
+1
hosts/zaphod/services/greeter.nix
··· 7 7 hide_version_string = true; 8 8 }; 9 9 }; 10 + security.pam.services.ly.fprintAuth = false; 10 11 }
+7
hosts/zaphod/services/misc.nix
··· 8 8 || !config.services.power-profiles-daemon.enable 9 9 ); 10 10 libinput.enable = lib.mkDefault true; 11 + logind.settings.Login = { 12 + HandlePowerKey = "ignore"; 13 + HandlePowerKeyLongPress = "ignore"; 14 + HandleLidSwitch = "ignore"; 15 + HandleLidSwitchExternalPower = "ignore"; 16 + HandleLidSwitchDocked = "ignore"; 17 + }; 11 18 }; 12 19 }