Compare commits
3 Commits
a671f56375
...
c5d2e8d5ce
Author | SHA1 | Date |
---|---|---|
Sven Vogel | c5d2e8d5ce | |
Sven Vogel | bcc46cdec8 | |
Sven Vogel | 5b73b05c58 |
|
@ -18,6 +18,7 @@ in
|
||||||
./extra
|
./extra
|
||||||
./core
|
./core
|
||||||
./dev
|
./dev
|
||||||
|
./games
|
||||||
];
|
];
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
|
|
|
@ -4,6 +4,5 @@
|
||||||
./dvd.nix
|
./dvd.nix
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
./wireguard.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 extra /etc/nixos
|
||||||
cp -rv users /etc/nixos
|
cp -rv users /etc/nixos
|
||||||
cp -rv *.nix /etc/nixos/
|
cp -rv *.nix /etc/nixos/
|
||||||
|
cp -rv games /etc/nixos/
|
||||||
;;
|
;;
|
||||||
n|N )
|
n|N )
|
||||||
echo "aborting..."
|
echo "aborting..."
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
{ pkgs, config, ... }: {
|
{ pkgs, config, ... }: {
|
||||||
# put your nix module in here!
|
# put your nix module in here!
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# system wide packages
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,9 +36,6 @@
|
||||||
ungoogled-chromium
|
ungoogled-chromium
|
||||||
tor-browser-bundle-bin
|
tor-browser-bundle-bin
|
||||||
|
|
||||||
# games
|
|
||||||
prismlauncher
|
|
||||||
|
|
||||||
# social media
|
# social media
|
||||||
discord
|
discord
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
@ -93,6 +90,7 @@
|
||||||
mpv
|
mpv
|
||||||
inkscape
|
inkscape
|
||||||
krita
|
krita
|
||||||
|
gmic-qt
|
||||||
libreoffice-qt
|
libreoffice-qt
|
||||||
libsForQt5.kcalc
|
libsForQt5.kcalc
|
||||||
libsForQt5.ark
|
libsForQt5.ark
|
||||||
|
|
Loading…
Reference in New Issue