Compare commits
No commits in common. "ba7a509a3384d22914364e803ed0fa7422bc0a39" and "23414388613eba0184badc4f6dda9cd6d8eff72a" have entirely different histories.
ba7a509a33
...
2341438861
|
@ -19,8 +19,6 @@ in
|
||||||
./users/servostar/user.nix
|
./users/servostar/user.nix
|
||||||
./.luks-swap.nix
|
./.luks-swap.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./extra/dvd.nix
|
|
||||||
./extra/bluray.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
@ -172,7 +170,7 @@ in
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = (with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(python3.withPackages(python-packages))
|
(python3.withPackages(python-packages))
|
||||||
|
|
||||||
virt-manager
|
virt-manager
|
||||||
|
@ -197,6 +195,11 @@ in
|
||||||
openocd # on-chip programming and debugging support
|
openocd # on-chip programming and debugging support
|
||||||
avrdude # esp32 and others support
|
avrdude # esp32 and others support
|
||||||
|
|
||||||
|
libdvdcss
|
||||||
|
libaacs
|
||||||
|
libbdplus
|
||||||
|
libbluray
|
||||||
|
|
||||||
devbox
|
devbox
|
||||||
filelight
|
filelight
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
|
@ -225,7 +228,7 @@ in
|
||||||
|
|
||||||
wineWowPackages.stable
|
wineWowPackages.stable
|
||||||
winetricks
|
winetricks
|
||||||
]);
|
];
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ pkgs, config, ... }: {
|
|
||||||
# libaacs requires some extra configuration
|
|
||||||
# an extra VUK database setup in the users XDG config directory
|
|
||||||
# can be downloaded from: http://fvonline-db.bplaced.net/
|
|
||||||
# and must be placed in: ~/.config/aaacs/KEYDB.cfg
|
|
||||||
|
|
||||||
# packages needed for decrypting Blurays
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
libdvdcss
|
|
||||||
libaacs
|
|
||||||
libbdplus
|
|
||||||
libbluray
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ pkgs, ... }: {
|
|
||||||
# packages needed for decrypting DVDs with handbrake
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
libdvdcss
|
|
||||||
handbrake
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -6,9 +6,7 @@ read -r choice
|
||||||
case "$choice" in
|
case "$choice" in
|
||||||
y|Y )
|
y|Y )
|
||||||
echo "copying files..."
|
echo "copying files..."
|
||||||
cp -rv extra /etc/nixos/
|
cp -rv nixos /etc
|
||||||
cp -rv users /etc/nixos/users
|
|
||||||
cp -rv *.nix /etc/nixos/
|
|
||||||
;;
|
;;
|
||||||
n|N )
|
n|N )
|
||||||
echo "aborting..."
|
echo "aborting..."
|
||||||
|
@ -34,4 +32,4 @@ case "$1" in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo "done"
|
echo "done"
|
|
@ -11,4 +11,5 @@ ps: with ps;
|
||||||
setuptools
|
setuptools
|
||||||
ipykernel
|
ipykernel
|
||||||
scipy
|
scipy
|
||||||
]
|
gurobipy
|
||||||
|
]
|
|
@ -113,6 +113,7 @@
|
||||||
mpv
|
mpv
|
||||||
inkscape
|
inkscape
|
||||||
krita
|
krita
|
||||||
|
handbrake
|
||||||
libreoffice-qt
|
libreoffice-qt
|
||||||
libsForQt5.kcalc
|
libsForQt5.kcalc
|
||||||
libsForQt5.ark
|
libsForQt5.ark
|
||||||
|
|
Loading…
Reference in New Issue