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

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

    profiles.gui = {
      laptop.enable = true;
      font = {
        name = "JetBrainsMono";
        pixelSize = 13;
      };
    };

    profiles.browsing.hiDpi = true;

    programs.htop.settings.detailed_cpu_time = true;

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