blob: 1df8fad46b88100a19fe2eb71dfa0fde686a9210 (
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
|
{ pkgs, ... }:
{
config = {
activeProfiles = [
"base"
"gui"
"browsing"
"development"
"communication"
"multimedia"
"creative"
"research"
"security"
"gaming"
];
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 --mode static --color ffffff"; }
];
};
}
|