Compare commits

...
4 Commits
4 changed files with 53 additions and 50 deletions
+1 -1
View File
@@ -356,7 +356,7 @@ background_alpha=0.8
################ INTERACTION #################
### Change toggle keybinds for the hud & logging
# toggle_hud=Shift_R+F12
toggle_hud=Shift_R+F12
# toggle_hud_position=Shift_R+F11
# toggle_preset=Shift_R+F10
# toggle_fps_limit=Shift_L+F1
+4 -1
View File
@@ -461,7 +461,7 @@
# Paths seen from inside the Flatpak Steam sandbox
steam = "$HOME/.steam/steam";
steamapps = "$HOME/Games/SteamLibrary/steamapps";
proton = "Proton 11.0";
proton = "Proton - Experimental";
# Runs inside flatpak's sandbox
innerCommand = ''
@@ -528,6 +528,9 @@
# This is gamescope installed from flatpak
"/usr/lib/extensions/vulkan/gamescope/bin"
# So ModOrganizer2 can load this plugin symlinked from here
"${config.home.homeDirectory}/Projects/ModOrganizer2_Cyberpunk_Plugin"
];
};
};
+1 -1
View File
@@ -211,7 +211,7 @@ in {
"<C-p>"
"a"
];
run = "plugin ouch";
run = "plugin ouch 7z";
desc = "Add selection to archive";
}
{
+47 -47
View File
@@ -141,53 +141,53 @@
};
};
ssd = {
type = "disk";
device = "/dev/disk/by-id/nvme-eui.00253857019ebd67";
content = {
type = "gpt";
partitions = {
luks = {
label = "LUKS_SSD";
size = "100%";
content = {
type = "luks";
name = "crypted_ssd";
extraOpenArgs = [
"--perf-no_read_workqueue"
"--perf-no_write_workqueue"
];
settings = {
allowDiscards = true;
crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
# Disable for interactive password entry
# This is contained on the main disk, so by unlocking the main disk with the password,
# the second disk can unlock automatically
keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
fallbackToPassword = false;
};
content = {
type = "btrfs";
extraArgs = ["-L" "SSD" "-f"];
subvolumes = {
"data" = {
mountpoint = "/home/christoph/SSD";
mountOptions = [
"compress=zstd"
"noatime"
];
};
};
};
};
};
};
};
};
# ssd = {
# type = "disk";
# device = "/dev/disk/by-id/nvme-eui.00253857019ebd67";
# content = {
# type = "gpt";
# partitions = {
# luks = {
# label = "LUKS_SSD";
# size = "100%";
# content = {
# type = "luks";
# name = "crypted_ssd";
#
# extraOpenArgs = [
# "--perf-no_read_workqueue"
# "--perf-no_write_workqueue"
# ];
#
# settings = {
# allowDiscards = true;
# crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
#
# # Disable for interactive password entry
# # This is contained on the main disk, so by unlocking the main disk with the password,
# # the second disk can unlock automatically
# keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
# fallbackToPassword = false;
# };
#
# content = {
# type = "btrfs";
# extraArgs = ["-L" "SSD" "-f"];
# subvolumes = {
# "data" = {
# mountpoint = "/home/christoph/SSD";
# mountOptions = [
# "compress=zstd"
# "noatime"
# ];
# };
# };
# };
# };
# };
# };
# };
# };
};
};