mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-27 03:08:38 +02:00
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
impermanence,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
impermanence.nixosModules.impermanence
|
|
];
|
|
|
|
environment.systemPackages = [
|
|
# `sudo ncdu -x /`
|
|
pkgs.ncdu
|
|
];
|
|
|
|
# NOTE: impermanence only mounts the directory/file list below to /persistent
|
|
# If the directory/file already exists in the root filesystem, you should
|
|
# move those files/directories to /persistent first!
|
|
environment.persistence."/persistent" = {
|
|
# sets the mount option x-gvfs-hide on all the bind mounts
|
|
# to hide them from the file manager
|
|
hideMounts = true;
|
|
directories = [
|
|
"/etc/NetworkManager/system-connections"
|
|
"/etc/ssh"
|
|
"/etc/nix/inputs"
|
|
"/etc/secureboot" # lanzaboote - secure boot
|
|
# my secrets
|
|
"/etc/agenix/"
|
|
|
|
"/var/log"
|
|
"/var/lib"
|
|
|
|
# k3s related
|
|
"/etc/iscsi"
|
|
"/etc/rancher"
|
|
];
|
|
files = [
|
|
"/etc/machine-id"
|
|
];
|
|
|
|
# the following directories will be passed to /persistent/home/$USER
|
|
users.ryan = {
|
|
directories = [
|
|
"codes"
|
|
"nix-config"
|
|
"tmp"
|
|
];
|
|
files = [
|
|
".config/nushell/history.txt"
|
|
];
|
|
};
|
|
};
|
|
}
|