tangled
alpha
login
or
join now
encode42.dev
/
nixos
0
fork
atom
Personal-use NixOS configuration
0
fork
atom
overview
issues
pulls
pipelines
Re-organize host import order
encode42.dev
7 months ago
d6a1403c
8cc45013
+9
-8
2 changed files
expand all
collapse all
unified
split
hosts
decryption
default.nix
encryption
default.nix
+4
-3
hosts/decryption/default.nix
···
7
7
8
8
{
9
9
imports = [
10
10
+
nixos-hardware.nixosModules.common-pc-ssd
10
11
./hardware-configuration.nix
11
12
./disk.nix
12
13
(flakeRoot + /hardware/laptop.nix) # TODO: Automatically add this in mkSystem
13
14
(flakeRoot + /hardware/cpu/amd.nix)
14
15
(flakeRoot + /hardware/gpu/nvidia.nix)
15
16
16
16
-
./users
17
17
-
18
17
(flakeRoot + /modules/common)
19
19
-
20
18
(flakeRoot + /modules/common/boot/systemd-boot.nix)
21
19
(flakeRoot + /modules/common/system/audio.nix)
20
20
+
22
21
(flakeRoot + /modules/desktop/environments/gnome.nix)
22
22
+
23
23
+
./users
23
24
];
24
25
25
26
boot.kernelPackages = pkgs.linuxPackages_latest;
+5
-5
hosts/encryption/default.nix
···
7
7
8
8
{
9
9
imports = [
10
10
+
nixos-hardware.nixosModules.msi-b350-tomahawk
11
11
+
nixos-hardware.nixosModules.common-pc-ssd
10
12
./hardware-configuration.nix
11
11
-
nixos-hardware.nixosModules.msi-b350-tomahawk
12
13
(flakeRoot + /hardware/cpu/amd.nix)
13
14
(flakeRoot + /hardware/gpu/amd.nix)
14
14
-
15
15
-
./users
16
15
17
16
(flakeRoot + /modules/common)
18
18
-
19
17
(flakeRoot + /modules/common/boot/secureboot.nix)
20
18
(flakeRoot + /modules/common/system/audio.nix)
19
19
+
(flakeRoot + /modules/common/virtualization.nix)
20
20
+
21
21
(flakeRoot + /modules/desktop/environments/gnome.nix)
22
22
23
23
-
(flakeRoot + /modules/common/virtualization.nix)
23
23
+
./users
24
24
];
25
25
26
26
boot.kernelPackages = pkgs.linuxPackages_zen;