Test
This commit is contained in:
parent
4b6f12b27d
commit
cf53eb8941
4 changed files with 66 additions and 2 deletions
|
@ -49,6 +49,8 @@
|
||||||
cryptsetup
|
cryptsetup
|
||||||
parted
|
parted
|
||||||
screen
|
screen
|
||||||
|
alejandra
|
||||||
|
nixfmt
|
||||||
];
|
];
|
||||||
|
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
|
|
59
nixos/hosts/nixos-vm-02/disks-btrfs.nix
Normal file
59
nixos/hosts/nixos-vm-02/disks-btrfs.nix
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
boot.loader.grub.device = "/dev/sda";
|
||||||
|
boot.initrd.luks.devices."sda2".device = "/dev/sda2";
|
||||||
|
services.btrfs.autoScrub.enable = true;
|
||||||
|
services.btrfs.autoScrub.interval = "weekly";
|
||||||
|
|
||||||
|
disko.devices.disk.sda = {
|
||||||
|
device = "/dev/sda";
|
||||||
|
content = {
|
||||||
|
type = "table";
|
||||||
|
format = "gpt";
|
||||||
|
partitions = [
|
||||||
|
{
|
||||||
|
name = "BOOT";
|
||||||
|
start = "0%";
|
||||||
|
end = "550MiB";
|
||||||
|
bootable = true;
|
||||||
|
flags = [ "esp" ];
|
||||||
|
fs-type = "fat32";
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "vfat";
|
||||||
|
mountpoint = "/boot";
|
||||||
|
};
|
||||||
|
} # partition 1
|
||||||
|
{
|
||||||
|
name = "LUKS";
|
||||||
|
start = "550MiB";
|
||||||
|
end = "100%";
|
||||||
|
content = {
|
||||||
|
type = "luks";
|
||||||
|
name = "LUKS-ROOT";
|
||||||
|
extraOpenArgs = [ "--allow-discards" ];
|
||||||
|
settings.keyFile = "/tmp/secret.key";
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "btrfs";
|
||||||
|
# extraArgs = [ "-f" ];
|
||||||
|
subvolumes = {
|
||||||
|
"/root" = {
|
||||||
|
mountpoint = "/";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # root
|
||||||
|
"/home" = {
|
||||||
|
mountpoint = "/home";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # home
|
||||||
|
"/nix" = {
|
||||||
|
mountpoint = "/nix";
|
||||||
|
mountOptions = [ "compress=zstd" "noatime" ];
|
||||||
|
}; # nix
|
||||||
|
}; # subvolumes
|
||||||
|
}; # content.content
|
||||||
|
}; # content
|
||||||
|
} # partition 2
|
||||||
|
]; # partitions
|
||||||
|
}; # content
|
||||||
|
}; # disko.devices.disk.sda
|
||||||
|
} # root
|
|
@ -33,8 +33,9 @@
|
||||||
extraOpenArgs = [ "--allow-discards" ];
|
extraOpenArgs = [ "--allow-discards" ];
|
||||||
settings.keyFile = "/tmp/secret.key";
|
settings.keyFile = "/tmp/secret.key";
|
||||||
content = {
|
content = {
|
||||||
type = "btrfs";
|
type = "filesystem";
|
||||||
# extraArgs = [ "-f" ];
|
format = "btrfs";
|
||||||
|
extraArgs = [ "-f" ];
|
||||||
subvolumes = {
|
subvolumes = {
|
||||||
"/root" = {
|
"/root" = {
|
||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
pkgs.home-manager
|
pkgs.home-manager
|
||||||
pkgs.git
|
pkgs.git
|
||||||
pkgs.vim
|
pkgs.vim
|
||||||
|
pkgs.alejandra
|
||||||
|
pkgs.nixfmt
|
||||||
(pkgs.callPackage sops-nix {}).sops-import-keys-hook
|
(pkgs.callPackage sops-nix {}).sops-import-keys-hook
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue