Move steam config to system level as HM can't manage it

This commit is contained in:
KnightArtorias 2025-12-13 12:44:14 +00:00
parent 1ebadf75e3
commit 2cf392ab82
5 changed files with 12 additions and 2 deletions

View file

@ -4,7 +4,6 @@
./librewolf.nix ./librewolf.nix
./vesktop.nix ./vesktop.nix
./minecraft.nix ./minecraft.nix
./steam.nix
./lutris.nix ./lutris.nix
]; ];
} }

View file

@ -10,6 +10,7 @@
./system-configuration.nix ./system-configuration.nix
../default.nix ../default.nix
../../../nixos/roles/physical/desktop/common
../../../nixos/roles/physical/desktop/niri ../../../nixos/roles/physical/desktop/niri
]; ];

View file

@ -0,0 +1,5 @@
{
imports = [
./steam.nix
];
}

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
program.steam = { programs.steam = {
enable = true; enable = true;
}; };
} }

View file

@ -0,0 +1,5 @@
{
imports = [
./apps
];
}