Compare commits
3 Commits
2341438861
...
ba7a509a33
Author | SHA1 | Date |
---|---|---|
Sven Vogel | ba7a509a33 | |
Sven Vogel | 980581249d | |
Sven Vogel | 040436a8bf |
|
@ -19,6 +19,8 @@ in
|
|||
./users/servostar/user.nix
|
||||
./.luks-swap.nix
|
||||
./fonts.nix
|
||||
./extra/dvd.nix
|
||||
./extra/bluray.nix
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
@ -170,7 +172,7 @@ in
|
|||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = (with pkgs; [
|
||||
(python3.withPackages(python-packages))
|
||||
|
||||
virt-manager
|
||||
|
@ -195,11 +197,6 @@ in
|
|||
openocd # on-chip programming and debugging support
|
||||
avrdude # esp32 and others support
|
||||
|
||||
libdvdcss
|
||||
libaacs
|
||||
libbdplus
|
||||
libbluray
|
||||
|
||||
devbox
|
||||
filelight
|
||||
ffmpeg-full
|
||||
|
@ -228,7 +225,7 @@ in
|
|||
|
||||
wineWowPackages.stable
|
||||
winetricks
|
||||
];
|
||||
]);
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
# packages needed for decrypting DVDs with handbrake
|
||||
environment.systemPackages = with pkgs; [
|
||||
libdvdcss
|
||||
handbrake
|
||||
];
|
||||
}
|
|
@ -6,7 +6,9 @@ read -r choice
|
|||
case "$choice" in
|
||||
y|Y )
|
||||
echo "copying files..."
|
||||
cp -rv nixos /etc
|
||||
cp -rv extra /etc/nixos/
|
||||
cp -rv users /etc/nixos/users
|
||||
cp -rv *.nix /etc/nixos/
|
||||
;;
|
||||
n|N )
|
||||
echo "aborting..."
|
||||
|
|
|
@ -11,5 +11,4 @@ ps: with ps;
|
|||
setuptools
|
||||
ipykernel
|
||||
scipy
|
||||
gurobipy
|
||||
]
|
|
@ -113,7 +113,6 @@
|
|||
mpv
|
||||
inkscape
|
||||
krita
|
||||
handbrake
|
||||
libreoffice-qt
|
||||
libsForQt5.kcalc
|
||||
libsForQt5.ark
|
||||
|
|
Loading…
Reference in New Issue