Move steam config to system level as HM can't manage it
This commit is contained in:
parent
1ebadf75e3
commit
2cf392ab82
5 changed files with 12 additions and 2 deletions
|
|
@ -4,7 +4,6 @@
|
|||
./librewolf.nix
|
||||
./vesktop.nix
|
||||
./minecraft.nix
|
||||
./steam.nix
|
||||
./lutris.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
./system-configuration.nix
|
||||
../default.nix
|
||||
|
||||
../../../nixos/roles/physical/desktop/common
|
||||
../../../nixos/roles/physical/desktop/niri
|
||||
];
|
||||
|
||||
|
|
|
|||
5
nixos/roles/physical/desktop/common/apps/default.nix
Normal file
5
nixos/roles/physical/desktop/common/apps/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./steam.nix
|
||||
];
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
program.steam = {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
5
nixos/roles/physical/desktop/common/default.nix
Normal file
5
nixos/roles/physical/desktop/common/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./apps
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue