sops sops sops

This commit is contained in:
mjallen18
2025-05-27 17:11:53 -05:00
parent 4019491ef6
commit d868b717ac
7 changed files with 94 additions and 29 deletions

View File

@@ -60,6 +60,8 @@ in
bootspec.enable = true;
};
zramSwap.enable = true;
environment.systemPackages = with pkgsVersion; [
edk2-uefi-shell
];

View File

@@ -125,6 +125,8 @@ in
# ../../modules/desktop-environments/cosmic/specialisation.nix
];
chaotic.mesa-git.enable = true;
# Environment configuration
environment = {
systemPackages = systemPackages;

View File

@@ -13,26 +13,26 @@ let
];
defaultLocalOptions = [
"compress=zstd"
"autodefrag"
# "autodefrag"
"nofail"
"x-systemd.automount"
"auto"
# "x-systemd.automount"
# "auto"
"rw"
];
in
{
fileSystems = {
"/home/matt/Steam" = {
device = "/dev/disk/by-uuid/EBEBAFB4-3CEB-4EB4-841B-693C94304751";
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S6B0NL0W232824B-part1";
options = [
"subvol=Steam"
"subvol=steam"
"noatime"
] ++ defaultLocalOptions;
};
"/home/matt/Heroic" = {
device = "/dev/disk/by-uuid/EBEBAFB4-3CEB-4EB4-841B-693C94304751";
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S6B0NL0W232824B-part1";
options = [
"subvol=Heroic"
"subvol=heroic"
"noatime"
] ++ defaultLocalOptions;
};