blob: 8bbeebcbc2ac63c12718b63564d4f72d7144250f (
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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
{ config, lib, pkgs, ... }:
{
networking = {
hostName = "helium";
networkmanager.enable = true;
};
time.timeZone = "America/Los_Angeles";
environment.systemPackages = with pkgs; [
wget
vnstat
];
fonts.fonts = with pkgs; [
google-fonts mononoki source-code-pro fantasque-sans-mono hack-font
fira fira-code fira-code-symbols
];
nixpkgs = {
config = {
allowUnfree = true;
allowBroken = true;
};
};
hardware = {
opengl.enable = true;
pulseaudio = {
enable = true;
extraConfig = ''
load-module module-loopback
'';
};
};
programs = {
bash.enableCompletion = true;
command-not-found.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
mosh.enable = true;
};
services = {
pcscd = {
enable = true;
};
fractalart = {
enable = true;
};
logind = {
lidSwitch = "suspend";
extraConfig = "IdleAction=lock";
};
printing.enable = true;
xserver = {
enable = true;
layout = "us";
libinput.enable = true;
displayManager.sddm.enable = true;
desktopManager = {
plasma5.enable = true;
xterm.enable = true;
};
};
vnstat.enable = true;
# security stuff
fail2ban.enable = false;
clamav = {
daemon.enable = false;
updater.enable = false;
};
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
powerManagement.enable = true;
nix = {
gc = {
automatic = true;
dates = "03:15";
};
binaryCaches = [ "https://cache.nixos.org/" ];
nixPath = [
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs"
"nixos-config=/etc/nixos/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
extraOptions = ''
gc-keep-outputs = true
gc-keep-derivations = true
'';
};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "19.03"; # Did you read the comment?
system.autoUpgrade.enable = true;
}
|