tangled
alpha
login
or
join now
pyrox.dev
/
nix
1
fork
atom
My Nix Configuration
1
fork
atom
overview
issues
pulls
pipelines
[flake] more config damn
pyrox.dev
5 months ago
bcb4ff04
7068e0b6
verified
This commit was signed with the committer's
known signature
.
pyrox.dev
SSH Key Fingerprint:
SHA256:ihSg8ro3xVhqiuGLMtUGTeMVgmEMlaXvSS4AFyYcM/o=
+16
-5
4 changed files
expand all
collapse all
unified
split
homeModules
programs
dms
default.nix
wayland
keybindings.nix
hosts
zaphod
services
greeter.nix
misc.nix
-1
homeModules/programs/dms/default.nix
reviewed
···
10
10
config = lib.mkIf cfg {
11
11
programs.dankMaterialShell = {
12
12
enable = true;
13
13
-
enableSystemd = true;
14
13
enableNightMode = false;
15
14
enableDynamicTheming = false;
16
15
enableAudioWavelength = false;
+8
-4
homeModules/wayland/keybindings.nix
reviewed
···
71
71
72
72
"SUPER_SHIFT, Q, killactive"
73
73
"$mod, F, fullscreen, 0"
74
74
-
"$mod, Space, hy3:togglefocuslayer"
75
75
-
"SUPER_SHIFT, Space, togglefloating, active"
74
74
+
# Super-(literal equals)
75
75
+
"$mod, code:21, hy3:togglefocuslayer"
76
76
+
# Super-(literal plus)
77
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
83
-
"$mod, D, global, caelestia:launcher"
85
85
+
", XF86PowerOff , global, caelestia:session"
86
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
90
+
", XF86PowerOff ,exec, dms ipc call powermenu toggle"
87
91
"SUPER_SHIFT, X, exec, dms ipc call lock lock"
88
88
-
"$mod, D, exec, dms ipc call spotlight toggle"
92
92
+
"$mod, Space, exec, dms ipc call spotlight toggle"
89
93
];
90
94
91
95
bindm = [
+1
hosts/zaphod/services/greeter.nix
reviewed
···
7
7
hide_version_string = true;
8
8
};
9
9
};
10
10
+
security.pam.services.ly.fprintAuth = false;
10
11
}
+7
hosts/zaphod/services/misc.nix
reviewed
···
8
8
|| !config.services.power-profiles-daemon.enable
9
9
);
10
10
libinput.enable = lib.mkDefault true;
11
11
+
logind.settings.Login = {
12
12
+
HandlePowerKey = "ignore";
13
13
+
HandlePowerKeyLongPress = "ignore";
14
14
+
HandleLidSwitch = "ignore";
15
15
+
HandleLidSwitchExternalPower = "ignore";
16
16
+
HandleLidSwitchDocked = "ignore";
17
17
+
};
11
18
};
12
19
}