blob: 8b210893e074ab4e831f3c41ce2a5598902e8b9e (
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
|
{
config,
pkgs,
home-manager,
nixvim,
webtray,
wofi-pass,
...
}:
{
imports = [
home-manager.nixosModules.default
webtray.outputs.nixosModules.default
wofi-pass.outputs.nixosModules.default
];
environment.systemPackages = with pkgs; [
pciutils
usbutils
acpi
nixfmt-rfc-style
blueberry
gimp
inkscape
hicolor-icon-theme
];
fonts.packages = with pkgs; [ nerdfonts ];
networking.networkmanager.enable = true;
time.timeZone = "Europe/Zurich";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
users = import ./users.nix { inherit pkgs; };
programs = import ./programs { inherit pkgs; };
services = import ./services { inherit pkgs; };
home-manager = import ./home {
inherit pkgs;
inherit nixvim;
inherit config;
};
security.pam.services.hyprlock = { };
security.rtkit.enable = true;
hardware.bluetooth.enable = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}
|