started the steam box set up

This commit is contained in:
Chris Kruining 2025-06-15 16:07:10 +02:00
parent b9c54a5660
commit be896b7739
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
13 changed files with 129 additions and 25 deletions

View file

@ -1,12 +1,10 @@
{
config,
options,
lib,
pkgs,
user,
...
}: let
inherit (builtins) toString;
inherit (lib.meta) getExe;
inherit (lib.modules) mkIf mkMerge;
in {

View file

@ -1,8 +1,6 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.modules) mkIf;
inherit (lib.strings) concatStrings escapeNixString;
cfg = config.modules.${user}.shell;
in

View file

@ -1,6 +1,6 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib) mkIf mkDefault;
inherit (lib) mkIf;
inherit (lib.options) mkOption mkEnableOption;
inherit (lib.types) nullOr enum;