summaryrefslogtreecommitdiff
path: root/systems/steam-deck
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /systems/steam-deck
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'systems/steam-deck')
-rw-r--r--systems/steam-deck/system.nix71
1 files changed, 0 insertions, 71 deletions
diff --git a/systems/steam-deck/system.nix b/systems/steam-deck/system.nix
deleted file mode 100644
index 515e0f2..0000000
--- a/systems/steam-deck/system.nix
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- config,
- inputs,
- ...
-}: {
- imports = [./hardware.nix inputs.jovian.nixosModules.jovian];
-
- general-settings = {
- hostname = "steam-deck";
- locale = "en_US.UTF-8";
- timezone = "America/New_York";
- stateVersion = "25.05";
- };
-
- # age.secrets.culsans-user-password.file = ../../secrets/culsans-user-password.age;
-
- users.users."culsans" = {
- # hashedPasswordFile = config.age.secrets.culsans-user-password.path;
- password = "hello";
- isNormalUser = true;
- description = "Culsans";
- extraGroups = [
- "networkmanager"
- "wheel"
- "audio"
- "video"
- "libvirtd"
- ];
- };
-
- features = {
- gui = {
- apps = {};
- desktops = {
- niri.enable = true;
- };
- };
- cli = {
- shells.nushell.enable = true;
- utils = {};
- };
- services = {
- core.systemd-boot.enable = true;
- hardware = {
- bluetooth.enable = true;
- networkmanager.enable = true;
- pipewire.enable = true;
- };
- extra = {
- syncthing-client = {
- enable = true;
- username = "culsans";
- };
- udisks2.enable = true;
- };
- bundles = {
- printing.enable = true;
- };
- };
- };
-
- jovian = {
- devices.steamdeck.enable = true;
- steam = {
- enable = true;
- autoStart = true;
- defaultSession = "niri";
- user = "culsans";
- };
- };
-}