mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 01:24:57 +08:00
30 lines
396 B
Nix
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
|
|
];
|
|
}
|