-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnixos.nix
37 lines (36 loc) · 1017 Bytes
/
nixos.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
{ config, inputs, pkgs, pkgs-unstable, system, ... }:
let
accent = "pink";
flavor = "mocha";
hostname = "nixos";
stateVersion = "24.05";
username = "jer";
in {
imports =
[ ./system/boot.nix
./system/docker.nix
(import ./system/graphics.nix { inherit inputs; inherit pkgs; inherit system; })
./system/hardware-configuration.nix
./system/keyboard.nix
./system/locale.nix
(import ./system/network.nix { inherit hostname; })
./system/openrgb.nix
./system/printing.nix
./system/sound.nix
./system/store.nix
(import ./system/system.nix { inherit stateVersion; })
(import ./system/theme.nix { inherit accent; inherit flavor; })
(import ./system/user.nix {
inherit accent;
inherit config;
inherit flavor;
inherit hostname;
inherit inputs;
inherit pkgs;
inherit pkgs-unstable;
inherit stateVersion;
inherit system;
inherit username;
})
];
}