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
|
./librewolf.nix
|
||||||
./vesktop.nix
|
./vesktop.nix
|
||||||
./minecraft.nix
|
./minecraft.nix
|
||||||
./steam.nix
|
|
||||||
./lutris.nix
|
./lutris.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
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, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
program.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
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