blob: 46aa51da195f573f3715805062d79aa587f7020d (
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
|
{ lib, inputs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
] ++ (map (path: ../../modules/${path}) [
"core/global.nix"
"amdgpu.nix"
"amd.nix"
"nvidia.nix"
"passthrough.nix"
"core/audio.nix"
"core/bluetooth.nix"
"core/fonts.nix"
"polkit.nix"
"compromyse.nix"
"login.nix"
"wm_utils.nix"
"virtualization.nix"
]);
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.extraModprobeConfig = "options kvm_amd nested=1";
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = _: true;
services.fstrim.enable = true;
services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
};
};
networking.hostName = "x";
home-manager.users.compromyse = import ./home.nix;
environment.systemPackages = with pkgs; [
xorg.xorgserver
xorg.xf86inputevdev
xorg.xf86inputsynaptics
xorg.xf86inputlibinput
];
services.xserver.enable = true;
services.xserver.displayManager.startx.enable = true;
services.xserver.windowManager.dwm.enable = true;
services.xserver.windowManager.dwm.package = pkgs.dwm.overrideAttrs {
src = pkgs.fetchFromGitHub {
owner = "compromyse";
repo = "dwm";
rev = "master";
hash = "sha256-bYj9u0EBfpTcpJHzeaCp3mm6tSy9dz40y+X15R0WbUs=";
};
};
networking.extraHosts =
''
127.0.0.1 download.labsmartlis.local
'';
}
|