best practices: get rid of with pkgs;
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
graphics = {
|
||||
enable = true;
|
||||
enable32Bit = true;
|
||||
extraPackages = with pkgs; [ vpl-gpu-rt ];
|
||||
extraPackages = [ pkgs.vpl-gpu-rt ];
|
||||
};
|
||||
};
|
||||
boot = {
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
users = {
|
||||
groups.nixremote.gid = 555;
|
||||
users = {
|
||||
jawz.packages = with pkgs; [ stash ];
|
||||
jawz.packages = [ pkgs.stash ];
|
||||
nixremote = {
|
||||
isNormalUser = true;
|
||||
createHome = true;
|
||||
|
||||
@@ -80,12 +80,14 @@
|
||||
users = {
|
||||
groups.nixremote.gid = 555;
|
||||
users = {
|
||||
jawz.packages = with pkgs; [
|
||||
distrobox # install packages from other os
|
||||
gocryptfs # encrypted filesystem! shhh!!!
|
||||
torrenttools # create torrent files from the terminal!
|
||||
vcsi # video thumbnails for torrents, can I replace it with ^?
|
||||
];
|
||||
jawz.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
distrobox # install packages from other os
|
||||
gocryptfs # encrypted filesystem! shhh!!!
|
||||
torrenttools # create torrent files from the terminal!
|
||||
vcsi # video thumbnails for torrents, can I replace it with ^?
|
||||
;
|
||||
};
|
||||
nixremote = {
|
||||
isNormalUser = true;
|
||||
createHome = true;
|
||||
@@ -116,14 +118,16 @@
|
||||
obs-studio = {
|
||||
enable = true;
|
||||
enableVirtualCamera = true;
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
obs-vkcapture
|
||||
obs-vaapi
|
||||
obs-tuna
|
||||
looking-glass-obs
|
||||
input-overlay
|
||||
droidcam-obs
|
||||
];
|
||||
plugins = builtins.attrValues {
|
||||
inherit (pkgs.obs-studio-plugins)
|
||||
obs-vkcapture
|
||||
obs-vaapi
|
||||
obs-tuna
|
||||
looking-glass-obs
|
||||
input-overlay
|
||||
droidcam-obs
|
||||
;
|
||||
};
|
||||
};
|
||||
};
|
||||
services = {
|
||||
|
||||
Reference in New Issue
Block a user