mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
fixes
This commit is contained in:
parent
24a97b7d23
commit
be5f05a7c1
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
|||
{ disk ? "/dev/nvme0n1", ... }: {
|
||||
{ config, disk ? "/dev/nvme0n1", ... }:
|
||||
let
|
||||
hostname = config.networking.hostName;
|
||||
in
|
||||
{
|
||||
disko.devices = {
|
||||
disk = {
|
||||
nvme = {
|
||||
|
@ -46,7 +50,7 @@
|
|||
mountpoint = "/persist";
|
||||
mountOptions = [ "compress=zstd" ];
|
||||
};
|
||||
"logs" = {
|
||||
"var/logs" = {
|
||||
mountpoint = "/var/logs";
|
||||
mountOptions = [ "compress=zstd" "noatime" ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue