added games module and moved primlauncher and steam to it
This commit is contained in:
parent
a671f56375
commit
5b73b05c58
|
@ -18,6 +18,7 @@ in
|
|||
./extra
|
||||
./core
|
||||
./dev
|
||||
./games
|
||||
];
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
./dvd.nix
|
||||
./yubikey.nix
|
||||
./wireguard.nix
|
||||
./steam.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./steam.nix
|
||||
./prismlauncher.nix
|
||||
];
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, config, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
prismlauncher
|
||||
];
|
||||
}
|
|
@ -11,6 +11,7 @@ case "$choice" in
|
|||
cp -rv extra /etc/nixos
|
||||
cp -rv users /etc/nixos
|
||||
cp -rv *.nix /etc/nixos/
|
||||
cp -rv games /etc/nixos/
|
||||
;;
|
||||
n|N )
|
||||
echo "aborting..."
|
||||
|
|
|
@ -36,9 +36,6 @@
|
|||
ungoogled-chromium
|
||||
tor-browser-bundle-bin
|
||||
|
||||
# games
|
||||
prismlauncher
|
||||
|
||||
# social media
|
||||
discord
|
||||
signal-desktop
|
||||
|
|
Loading…
Reference in New Issue