about summary refs log tree commit diff
path: root/home/configs/haruka/sefidel.nix
blob: 69b6b1a6384de9528993a6e1c8444ab88c0ea3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs, ... }:

{
  config = {
    activeProfiles = [ "base" "gui" "browsing" "development" "communication" "multimedia" "research" ];

    profiles.gui.font = {
      name = "JetBrainsMono";
      pixelSize = 14;
    };

    profiles.browsing.hiDpi = true;

    programs.htop.settings.detailed_cpu_time = true;

    sops.defaultSopsFile = ../../secrets/secrets.yaml;
    sops.gnupg.home = "/home/sefidel/.gnupg";
  };
}