This commit is contained in:
mjallen18
2026-03-15 19:52:22 -05:00
parent 9891b3abff
commit 829b369ebe
4 changed files with 12 additions and 4 deletions

6
flake.lock generated
View File

@@ -1557,11 +1557,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762968467, "lastModified": 1773621950,
"narHash": "sha256-q73zaLz2Jt6HeRA0Q6fKUmiXafh/qBkqRMSuVkqXf7A=", "narHash": "sha256-ed1LL/kazy7c8JpXOEc0YdClKNC/uGzlPqS1FLjfjXA=",
"owner": "mjallen18", "owner": "mjallen18",
"repo": "nix-steam-rom-manager", "repo": "nix-steam-rom-manager",
"rev": "d303a48a3026c428152277eea11d2da1385c4a12", "rev": "79928047019d4fb325d272bcb34ac9b47e0fe05a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -149,6 +149,7 @@
modules.home = with inputs; [ modules.home = with inputs; [
nix-index-database.homeManagerModules.nix-index nix-index-database.homeManagerModules.nix-index
steam-rom-manager.homeManagerModules.default
]; ];
# common darwin modules # common darwin modules

View File

@@ -35,7 +35,7 @@ in
# Optional: override default paths if needed # Optional: override default paths if needed
environmentVariables = { environmentVariables = {
romsDirectory = "/home/matt/Emulation/roms"; romsDirectory = "/media/sdcard/Emulation/roms";
steamDirectory = "/home/matt/.local/share/Steam"; steamDirectory = "/home/matt/.local/share/Steam";
}; };

View File

@@ -48,5 +48,12 @@ in
fileSystems = { fileSystems = {
"/etc".neededForBoot = true; "/etc".neededForBoot = true;
"/media/sdcard" = {
device = "/dev/mmcblk0p1";
fsType = "btrfs";
options = [
"noatime"
];
};
}; };
} }