blob: a170eaf2b7044def384337be5ea0d9c11b10fc4f (
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
{ config, pkgs, ... }:
{
hardware = {
pulseaudio = {
enable = true;
# Stupid but need it to control sound from acpid
# systemWide = true;
# Enable bluetooth audio
package = pkgs.pulseaudioFull;
# Disable cork module
configFile = pkgs.runCommand "default.pa" {} ''
grep -v module-role-cork ${config.hardware.pulseaudio.package}/etc/pulse/default.pa > $out
'';
};
bluetooth.enable = true;
opengl.enable = true;
};
sound.enable = true;
services = {
xserver = {
enable = true;
layout = "us";
xkbVariant = "altgr-intl";
exportConfiguration = true;
windowManager = {
i3 = {
enable = true;
package = pkgs.i3-gaps;
};
};
displayManager = {
defaultSession = "none+i3";
};
desktopManager = {
xterm.enable = false;
};
# Touchpad studd
libinput.enable = true;
# Start dbus?
# startDbusSession = true;
};
# Auto mounting
gvfs.enable = true;
# Evolution
gnome = {
gnome-keyring.enable = true;
evolution-data-server.enable = true;
};
# Enable CUPS to print documents.
printing.enable = true;
blueman.enable = true;
interception-tools =
let mappings = [
{ from = "KEY_CAPSLOCK"; to = "KEY_LEFTCTRL"; }
{ from = "KEY_LEFTALT"; to = "KEY_LEFTMETA"; }
{ from = "KEY_102ND"; to = "KEY_LEFTALT"; }
];
mapper = pkgs.callPackage ./intcp-mapper.nix { inherit mappings; };
intercept = pkgs.interception-tools;
in {
enable = true;
# We will just use our own here
plugins = [];
udevmonConfig = ''
- JOB: "${intercept}/bin/intercept -g $DEVNODE | ${mapper}/bin/mapper | ${intercept}/bin/uinput -d $DEVNODE"
DEVICE:
EVENTS:
EV_KEY: ${builtins.toJSON (map (m: m.from) mappings) }
'';
};
udev.packages = [ pkgs.yubikey-personalization ];
};
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gtk2";
};
dconf.enable = true;
};
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.julian = {
isNormalUser = true;
shell = pkgs.fish;
extraGroups = [ "wheel" "video" "libvirtd" "vboxusers" "cdrom" "networkmanager" ];
};
virtualisation.virtualbox.host = {
enable = true;
};
virtualisation.libvirtd.enable = true;
fonts.fonts = with pkgs; [
noto-fonts noto-fonts-emoji liberation_ttf ubuntu_font_family cozette
];
environment.systemPackages = with pkgs; [
# General stuff
gnupg acpi gutenprint gutenprintBin
# Nixos stuff
nox nix-index patchelf nix-prefetch-scripts
# Network stuff
networkmanagerapplet networkmanager-openconnect iw
wirelesstools openconnect
virtmanager
];
}
|