nixos-config/modules/nixos/linux/gui/desktopish/guiapps.nix
Sridhar Ratnakumar eaa9f5d251
obs
2024-11-14 14:59:55 -05:00

26 lines
351 B
Nix

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