All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 26s
43 lines
779 B
Nix
43 lines
779 B
Nix
{ pkgs, ... }: {
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home.packages = with pkgs; [
|
|
zed-editor
|
|
# kicad-small
|
|
# arduino-ide
|
|
|
|
slack
|
|
discord
|
|
# protonmail-desktop # https://www.reddit.com/r/NixOS/comments/1rm9alf/protonmail_in_nixos/
|
|
|
|
vlc
|
|
brave
|
|
libreoffice
|
|
appimage-run
|
|
# keepassxc
|
|
|
|
virt-manager
|
|
# winboat
|
|
|
|
remmina
|
|
moonlight-qt
|
|
# rustdesk
|
|
|
|
|
|
# inkscape
|
|
# davinci-resolve
|
|
# kdePackages.kdenlive
|
|
(wrapOBS {
|
|
plugins = with obs-studio-plugins; [
|
|
wlrobs
|
|
obs-backgroundremoval
|
|
obs-pipewire-audio-capture
|
|
];
|
|
})
|
|
|
|
ferium
|
|
portablemc
|
|
steamguard-cli
|
|
# modrinth-app
|
|
];
|
|
}
|