nixos-config/modules/nixos/linux/gui/desktopish/guiapps.nix
2024-09-28 18:01:53 -04:00

27 lines
361 B
Nix

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