This commit is contained in:
mjallen18
2026-01-08 11:50:24 -06:00
parent 052f7a2838
commit c7c5192c0c
5 changed files with 40 additions and 65 deletions

View File

@@ -1,6 +1,11 @@
{ pkgs, namespace, ... }:
{
home.username = "admin";
home = {
username = "admin";
packages = with pkgs; [
heroic
];
};
${namespace} = {
sops.enable = true;
@@ -55,6 +60,23 @@
}
];
};
};
steam-rom-manager = {
enable = true;
steamUsername = "mjallen18";
# Optional: override default paths if needed
environmentVariables = {
romsDirectory = "/home/deck/Emulation/roms";
steamDirectory = "/home/deck/.local/share/Steam";
};
emulators = {
"Non-SRM Shortcuts" = {
enable = true;
parserType = "Non-SRM Shortcuts";
extraArgs = "";
};
};
};
};
}