blob: 187c5a3171f112d6eeb998b45dfec32f92544a71 (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.nixfiles.modules.profiles.headful;
in {
config = mkIf cfg.enable {
nixfiles.modules = {
chromium.enable = true;
firefox.enable = true;
sound.enable = true;
thunderbird.enable = true;
nullmailer.enable = true;
dwm.enable = mkDefault false;
kde.enable = mkDefault true;
xmonad.enable = mkDefault false;
# Potentially remove in favor of Wayland in the future.
x11.enable = mkDefault true;
};
hm = {
home.packages = with pkgs; [
calibre
element-desktop
imv
libreoffice-fresh
mumble
telegram-desktop
tor-browser-bundle-bin
];
programs.bash.shellAliases.open = "xdg-open";
};
boot = {
kernelPackages = mkDefault pkgs.linuxPackages_latest;
kernelParams = [
# https://wiki.archlinux.org/title/improving_performance#Watchdogs
"nowatchdog"
"kernel.nmi_watchdog=0"
# A security risk I'm willing to take for a reason[1].
#
# [1]: https://www.phoronix.com/scan.php?page=article&item=spectre-meltdown-2&num=11
"mitigations=off"
];
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
configurationLimit = 10;
};
};
};
hardware.opengl = {
enable = true;
driSupport = true;
};
programs = {
dconf.enable = true;
iftop.enable = true;
mtr.enable = true;
};
services = {
upower.enable = true;
psd.enable = true;
};
environment.systemPackages = with pkgs; [lm_sensors];
my.extraGroups = [
"audio"
"input"
"render"
"video"
];
};
}
|