blob: ff8353ac90bf5288536b53a03a292845749a46f0 (
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
|
{ config, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "amdgpu" "zfs" ];
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
timeout = 3;
};
supportedFilesystems = [ "zfs" ];
zfs.devNodes = "/dev/disk/by-label";
};
#environment.systemPackages = with pkgs; [
# something
# somethingelse
#];
imports = [
./hardware-configuration.nix
../common/core
../common/optional/db.nix
../common/optional/dev.nix
../common/optional/ebooks.nix
../common/optional/games.nix
../common/optional/google-authenticator.nix
../common/optional/misc.nix
../common/optional/multimedia.nix
../common/optional/pipewire.nix
../common/optional/sdr.nix
../common/optional/services/openssh.nix
../common/optional/services/xorg.nix
../common/optional/sound.nix
../common/optional/zfs.nix
../common/users/nipsy
../common/users/root
];
networking = {
hostId = "8425e349";
hostName = "ginaz";
networkmanager.enable = true;
nftables.enable = true;
};
services.xserver.videoDrivers = [ "amdgpu" ];
system.stateVersion = "23.11";
}
|