finalize configuration before reinstalling

This commit is contained in:
caem 2025-01-26 15:43:32 +01:00
parent cc4a6f08a8
commit b26fd20ead
Signed by: caem
GPG key ID: 69A830D03203405F
4 changed files with 14 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ pkgs, lib, username, ... }:
{
imports = [
@ -6,8 +6,6 @@
./packages.nix
];
users.allowNoPasswordLogin = true; /* DEBUG */
time.timeZone = "Europe/Berlin";
networking = {
@ -45,13 +43,13 @@
# install this configuration on a device without it exploding when you don't have
# these specific partitions.
"/mnt/vault" = {
"/home/${username}/mounts/vault" = {
device = "/dev/disk/by-uuid/048d175b-0e3e-4ec7-955b-3d9a45f9f237";
options = [ "nofail" ];
fsType = "xfs";
};
"/mnt/attic" = {
"/home/${username}/mounts/attic" = {
device = "/dev/disk/by-uuid/ec32ce36-9f53-4f44-ac8f-2c9163f0b3d7";
options = [ "nofail" ];
fsType = "xfs";