summaryrefslogtreecommitdiff
path: root/accounts/gkleen@eos.nix
blob: dbe48eadefb3189073d94aeb17554370b4a65fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ flake, userName, pkgs, ... }:
{
  imports = with flake.nixosModules.userProfiles.${userName}; [
    zsh utils tmux
  ];

  config.home-manager.users.${userName} = {
    nixpkgs.config = {
      allowUnfree = true;
    };

    home.packages = with pkgs; [
      thunderbird libreoffice element-desktop keepassxc
    ];

    programs.firefox = {
      enable = true;
      profiles.default.settings = {
        "dom.security.https_only_mode" = true;
        "browser.cache.disk.enable" = false;
      };
    };
  };
}