summaryrefslogtreecommitdiff
path: root/accounts/gkleen@eostre.nix
blob: 72818d442c7f395b8dbb9466d6318923bcd23bff (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
25
26
27
28
{ flake, userName, pkgs, ... }:
{
  imports = with flake.nixosModules.userProfiles.${userName}; [
    zsh utils tmux
  ];

  config = {
    home-manager.users.${userName} = {
      home.stateVersion = "20.09";

      nixpkgs.config = {
        allowUnfree = true;
      };

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

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