dotfiles/nix/home/features/desktop/default.nix

12 lines
153 B
Nix
Raw Normal View History

2023-07-28 22:15:33 +00:00
{ pkgs, ... }: {
# Common GUI apps
imports = [
./vscode.nix
];
home.packages = with pkgs; [
firefox-esr
obsidian
qFlipper
];
}