blob: c5f17f95274bd6a79b8f8a8a3298d0e550835224 (
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
|
{config, lib, pkgs, ...}: {
imports = [
../../profiles/core.nix
../../profiles/user.nix
../../profiles/ssh.nix
../../profiles/graphical.nix
../../mixins/tailscale.nix
../../mixins/cli.nix
# ../../mixins/greet.nix
../../mixins/sway.nix
];
config = {
networking.hostName = "vm";
boot.supportedFilesystems = ["9p"];
boot = {
initrd = {
supportedFilesystems = ["btrfs"];
};
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
kernelParams = [
"console=ttyS0"
"init_on_free=1"
"page_poison=1"
"page_alloc.shuffle=1"
"slab_nomerge"
"vsyscall=none"
];
cleanTmpDir = true;
loader = {
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
};
time.timeZone = lib.mkDefault "Israel";
fileSystems = {
"/" = {
device = "none";
fsType = "tmpfs";
options = ["noexec" "defaults" "size=2G" "mode=755"];
};
"/nix" = {
device = "/dev/disk/by-partlabel/nix";
options = ["noatime" "compress=zstd"];
};
"/boot" = {
device = "/dev/disk/by-partlabel/boot";
};
};
zramSwap = {
enable = true;
algorithm = "zstd";
};
};
}
|