37 lines
689 B
Nix
37 lines
689 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home-manager.users.qenya = { pkgs, ... }: {
|
|
imports = [
|
|
../../home/cli.nix
|
|
../../home/firefox.nix
|
|
../../home/git.nix
|
|
../../home/gnome
|
|
../../home/vscode.nix
|
|
];
|
|
|
|
home.packages = (with pkgs; [
|
|
bitwarden
|
|
discord
|
|
foliate
|
|
gimp-with-plugins
|
|
keepassxc
|
|
thunderbird
|
|
tor-browser-bundle-bin
|
|
|
|
# libreoffice
|
|
libreoffice
|
|
hunspell
|
|
hunspellDicts.en_GB-ise
|
|
|
|
# games
|
|
openttd
|
|
nur.repos.qenya.digital-a-love-story
|
|
nur.repos.qenya.dont-take-it-personally-babe
|
|
]);
|
|
programs.chromium.enable = true;
|
|
|
|
home.stateVersion = "23.11";
|
|
};
|
|
}
|