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

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

    programs.htop.settings.detailed_cpu_time = true;

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

    wayland.windowManager.sway.config.startup = [
      { command = "${pkgs.openrgb}/bin/openrgb -p default.orp"; }
    ];
  };
}