add os config
This commit is contained in:
parent
d8d692d313
commit
33bf5ec883
30 changed files with 271 additions and 5 deletions
25
home/additional-software.nix
Normal file
25
home/additional-software.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, config, pkgs, variant, ... }: {
|
||||
config = {
|
||||
home.packages =
|
||||
if variant == "default" then
|
||||
with pkgs; [
|
||||
qbittorrent
|
||||
pipewire
|
||||
discord
|
||||
feather # monero wallet
|
||||
# litecoin
|
||||
librewolf
|
||||
spotify
|
||||
ungoogled-chromium
|
||||
immich-cli
|
||||
vesktop
|
||||
]
|
||||
else if variant == "allegro" then
|
||||
with pkgs; [
|
||||
aria2
|
||||
pipewire
|
||||
teams-for-linux
|
||||
]
|
||||
else [];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue