Add gui apps in home-manager profile
This commit is contained in:
parent
e8deca2983
commit
f50a34b7c2
1 changed files with 24 additions and 0 deletions
24
home/gui.nix
Normal file
24
home/gui.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
jetbrains.idea
|
||||||
|
teams-for-linux
|
||||||
|
mate.engrampa
|
||||||
|
zotero
|
||||||
|
deezer-enhanced
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
firefox.enable = true;
|
||||||
|
keepassxc = {
|
||||||
|
enable = true;
|
||||||
|
autostart = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.autostart.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue