blob: 73fe4892e45d7824562b5cef7fa16f6e74ff80da (
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
|
{ config, lib, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "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; [
git-review
];
imports = [
./hardware-configuration.nix
../common/core
#../common/optional/db.nix
../common/optional/dev.nix
../common/optional/misc.nix
#../common/optional/multimedia.nix
../common/optional/pipewire.nix
../common/optional/services/openssh.nix
../common/optional/services/xorg.nix
../common/optional/zfs.nix
../common/users/nipsy
../common/users/root
];
networking = {
hostId = "4b1f6e29";
hostName = "kaitain";
nftables.enable = true;
};
services.openssh.openFirewall = false;
services.xserver.videoDrivers = lib.mkForce [ "vmware" "virtualbox" "modesetting" ];
system.stateVersion = "23.11";
#systemd.user.services = let
# vbox-client = desc: flags: {
# description = "VirtualBox Guest: ${desc}";
# wantedBy = [ "graphical-session.target" ];
# requires = [ "dev-vboxguest.device" ];
# after = [ "dev-vboxguest.device" ];
# unitConfig.ConditionVirtualization = "oracle";
# serviceConfig.ExecStart = "${config.boot.kernelPackages.virtualboxGuestAdditions}/bin/VBoxClient -fv ${flags}";
# };
#in {
# virtualbox-resize = vbox-client "Resize" "--vmsvga";
# virtualbox-clipboard = vbox-client "Clipboard" "--clipboard";
#};
users.users.root.openssh.authorizedKeys.keys = [
(builtins.readFile ../common/users/nipsy/keys/id_att.pub)
];
virtualisation.virtualbox.guest.enable = true;
}
|