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
./vesktop.nix
./minecraft.nix
./steam.nix
./lutris.nix
];
}

View file

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

View file

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

View file

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

View file

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