finalize configuration before reinstalling
This commit is contained in:
parent
cc4a6f08a8
commit
b26fd20ead
4 changed files with 14 additions and 7 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue