Compare commits
No commits in common. "ba7a509a3384d22914364e803ed0fa7422bc0a39" and "23414388613eba0184badc4f6dda9cd6d8eff72a" have entirely different histories.
ba7a509a33
...
2341438861
|
@ -19,8 +19,6 @@ in
|
|||
./users/servostar/user.nix
|
||||
./.luks-swap.nix
|
||||
./fonts.nix
|
||||
./extra/dvd.nix
|
||||
./extra/bluray.nix
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
@ -172,7 +170,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
|
||||
|
@ -197,6 +195,11 @@ in
|
|||
openocd # on-chip programming and debugging support
|
||||
avrdude # esp32 and others support
|
||||
|
||||
libdvdcss
|
||||
libaacs
|
||||
libbdplus
|
||||
libbluray
|
||||
|
||||
devbox
|
||||
filelight
|
||||
ffmpeg-full
|
||||
|
@ -225,7 +228,7 @@ in
|
|||
|
||||
wineWowPackages.stable
|
||||
winetricks
|
||||
]);
|
||||
];
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# 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
|
||||
y|Y )
|
||||
echo "copying files..."
|
||||
cp -rv extra /etc/nixos/
|
||||
cp -rv users /etc/nixos/users
|
||||
cp -rv *.nix /etc/nixos/
|
||||
cp -rv nixos /etc
|
||||
;;
|
||||
n|N )
|
||||
echo "aborting..."
|
||||
|
@ -34,4 +32,4 @@ case "$1" in
|
|||
;;
|
||||
esac
|
||||
|
||||
echo "done"
|
||||
echo "done"
|
|
@ -11,4 +11,5 @@ ps: with ps;
|
|||
setuptools
|
||||
ipykernel
|
||||
scipy
|
||||
]
|
||||
gurobipy
|
||||
]
|
|
@ -113,6 +113,7 @@
|
|||
mpv
|
||||
inkscape
|
||||
krita
|
||||
handbrake
|
||||
libreoffice-qt
|
||||
libsForQt5.kcalc
|
||||
libsForQt5.ark
|
||||
|
|
Loading…
Reference in New Issue