igor: Adapt disk layout

This commit is contained in:
Alexander Kobjolke 2024-12-12 22:11:57 +01:00
parent a029bd12e4
commit 9389442c40
3 changed files with 53 additions and 31 deletions

View file

@ -13,36 +13,34 @@
../../modules/timezone.nix ../../modules/timezone.nix
../../modules/keybase.nix ../../modules/keybase.nix
../../modules/ssh.nix ../../modules/ssh.nix
../../modules/tailscale
./disko-config.nix ./disko-config.nix
./hardware-configuration.nix
]; ];
config.networking = config.networking = {
let hostName = "igor";
extIface = "ens3"; domain = "failco.de";
in wireless.enable = false;
{ useDHCP = false;
hostName = "igor"; enableIPv6 = false;
domain = "failco.de"; interfaces.eth0 = {
wireless.enable = false; ipv4.addresses = [
useDHCP = false; {
enableIPv6 = false; address = "192.168.178.2";
interfaces.${extIface} = { prefixLength = 24;
ipv4.addresses = [ }
{
address = "192.168.0.2";
prefixLength = 24;
}
];
};
defaultGateway = "192.168.0.1";
nameservers = [
"192.168.0.1"
"1.1.1.1"
"8.8.8.8"
]; ];
firewall.enable = true;
}; };
defaultGateway = "192.168.178.1";
nameservers = [
"192.168.178.1"
"1.1.1.1"
"8.8.8.8"
];
firewall.enable = true;
};
config.security.sudo = { config.security.sudo = {
enable = true; enable = true;
@ -72,5 +70,5 @@
config.programs.zsh.enable = true; config.programs.zsh.enable = true;
config.system.stateVersion = "24.05"; config.system.stateVersion = "24.11";
} }

View file

@ -2,7 +2,7 @@
disko.devices = { disko.devices = {
disk.main = { disk.main = {
type = "disk"; type = "disk";
device = "/dev/mmcblk0"; device = "/dev/sdb";
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
@ -26,18 +26,32 @@
extraArgs = [ "-f" ]; extraArgs = [ "-f" ];
subvolumes = { subvolumes = {
"/rootfs" = { mountpoint = "/"; }; "/rootfs" = {
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime"
];
};
"/home" = { "/home" = {
mountOptions = [ "compress=zstd" ]; mountOptions = [
"compress=zstd"
"noatime"
];
mountpoint = "/home"; mountpoint = "/home";
}; };
"/nix" = { "/nix" = {
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [
"compress=zstd"
"noatime"
];
mountpoint = "/nix"; mountpoint = "/nix";
}; };
"/swap" = { "/swap" = {
mountpoint = "/.swapvol"; mountpoint = "/.swapvol";
swap = { swapfile.size = "2G"; }; swap = {
swapfile.size = "2G";
};
}; };
}; };
}; };

View file

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
}