nixos-config/features/desktopish/guiapps.nix
2022-01-08 11:24:40 -05:00

30 lines
396 B
Nix

{ pkgs, ... }: {
imports = [
./vscode.nix
];
# Apps I use on desktops and laptops
environment.systemPackages = with pkgs; [
brave
firefox
# onlyoffice-bin
obsidian
_1password
_1password-gui
simplescreenrecorder
obs-studio
vlc
qbittorrent
# X stuff
caffeine-ng
xorg.xdpyinfo
xorg.xrandr
xclip
xsel
arandr
];
}