-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.nix
83 lines (66 loc) · 1.55 KB
/
configuration.nix
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
{ lib, config, pkgs, ... }:
{
security.sudo.wheelNeedsPassword = false;
users.users = {
root = {
password = null;
};
cryptos = {
description = "CryptOS User";
isNormalUser = true;
extraGroups = [ "wheel" ];
password = "";
};
};
services.xserver = {
enable = true;
displayManager = {
# With LightDM, rendering in XFCE was totally broken. All kinds of errors
# making it unusable.
sddm = {
#lightdm = {
enable = true;
};
# Automatically log in
autoLogin = {
enable = true;
user = "cryptos";
};
};
# Use LXQt or XFCE
desktopManager.plasma5 = {
#desktopManager.xfce = {
#desktopManager.lxqt = {
enable = true;
};
# Enable touchpad support for many laptops.
libinput.enable = true;
#synaptics.enable = true;
};
# Disable networking
networking = {
networkmanager.enable = false;
wireless.enable = false;
useDHCP = false;
interfaces = {};
};
# KDE complains if power management is disabled (to be precise, if
# there is no power management backend such as upower).
powerManagement.enable = true;
# Enable GPG agent (includes pinentry too) for GPG encryption and decryption
programs = {
gnupg.agent.enable = true;
};
environment.systemPackages = with pkgs; [
# Cryptocurrency wallets
electrum
#electron-cash
electrum-ltc
monero
monero-gui
# Useful utilities
zbar
# Support LUKS encrypted USB sticks
cryptsetup
];
}