forked from fabian/nix_config
modularize steam
This commit is contained in:
parent
a09e88cf3e
commit
8b8aa68811
6 changed files with 30 additions and 18 deletions
|
@ -5,7 +5,6 @@
|
|||
...
|
||||
}: {
|
||||
imports = [
|
||||
./steam
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
with lib; {
|
||||
home.packages = [
|
||||
(pkgs.callPackage ./package.nix {})
|
||||
pkgs.protonup
|
||||
pkgs.winetricks
|
||||
pkgs.protontricks
|
||||
];
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
writeShellScriptBin,
|
||||
steam-run,
|
||||
steam,
|
||||
...
|
||||
}:
|
||||
writeShellScriptBin "steam" ''
|
||||
exec ${steam-run}/bin/steam-run ${steam}/bin/steam -console
|
||||
''
|
|
@ -12,9 +12,14 @@
|
|||
./isolation.nix
|
||||
];
|
||||
|
||||
local.baseline.enable = true;
|
||||
local.apps.terminal.enable = true;
|
||||
local.apps.neovim.enable = true;
|
||||
local = {
|
||||
baseline.enable = true;
|
||||
apps = {
|
||||
terminal.enable = true;
|
||||
neovim.enable = true;
|
||||
steam.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
nix.registry = {
|
||||
"system".to = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue