blob: 84b29631fa3f891a0523a95eb11322f8c17bda32 (
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
67
68
69
70
71
72
73
|
{ config, lib, pkgs, ... }:
with lib;
let
cnf = config.turris.defaults;
in {
options = {
turris.defaults = {
enable = mkOption {
type = types.bool;
default = true;
description = "Use default Turris configuration";
};
rootLabel = mkOption {
type = types.str;
default = "NixTurris";
description = "GPT partition label the root system is stored on";
};
};
};
config = mkIf cnf.enable {
system.stateVersion = mkDefault "22.11";
# We do not need Grub as U-Boot supports boot using extlinux like file
boot.loader.grub.enable = mkDefault false;
boot.loader.systemd-boot.enable = mkDefault false;
boot.loader.generic-extlinux-compatible.enable = mkDefault true;
# Use early print to the serial console
boot.kernelParams = [
"boot.shell_on_fail"
];
# Use the latest kernel
boot.kernelPackages = mkDefault pkgs.linuxPackages_latest;
# The supported deployment is on BTRFS
boot.supportedFilesystems = [ "btrfs" ];
boot.initrd.supportedFilesystems = [ "btrfs" ];
# Cover nix memory consumption peaks by compressing the RAM
zramSwap = mkDefault {
enable = true;
memoryPercent = 80;
};
fileSystems = mkDefault {
"/" = {
device = "/dev/disk/by-partlabel/" + cnf.rootLabel;
fsType = "btrfs";
};
};
# The default hostname
networking.hostName = mkDefault "nixturris";
# Set default editor
# TODO probably switch to nano later on
programs.vim.defaultEditor = mkDefault true;
# The additional administration packages
environment.systemPackages = with pkgs; [
htop iw
];
# No need for installer tools in standard system
system.disableInstallerTools = true;
};
}
|