33 lines
515 B
Nix
33 lines
515 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
dconf.enable = true;
|
|
|
|
programs = {
|
|
firefox.enable = true;
|
|
vscode.enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
bitwarden
|
|
discord
|
|
foliate
|
|
gimp-with-plugins
|
|
jellyfin-media-player
|
|
keepassxc
|
|
tor-browser-bundle-bin
|
|
zoom-us
|
|
|
|
# libreoffice
|
|
libreoffice
|
|
hunspell
|
|
hunspellDicts.en_GB-ise
|
|
|
|
# games
|
|
openttd
|
|
prismlauncher
|
|
nur.repos.qenya.digital-a-love-story
|
|
nur.repos.qenya.dont-take-it-personally-babe
|
|
];
|
|
}
|