mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
12 lines
153 B
Nix
12 lines
153 B
Nix
|
{ pkgs, ... }: {
|
||
|
# Common GUI apps
|
||
|
imports = [
|
||
|
./vscode.nix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
firefox-esr
|
||
|
obsidian
|
||
|
qFlipper
|
||
|
];
|
||
|
}
|