migrate impermanent home to subvolumes

This commit is contained in:
♥ Minnie ♥ 2024-09-07 15:48:27 +08:00
parent 2fce9fd507
commit c1a5ed1d4f
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
8 changed files with 15 additions and 77 deletions

View file

@ -14,9 +14,4 @@
enable = true; enable = true;
source = ./config/custom.css; source = ./config/custom.css;
}; };
home.persistence."/persist/home/sajenim".directories = [
".config/discord"
".config/BetterDiscord"
];
} }

View file

@ -101,15 +101,4 @@
proton.isDefault = true; proton.isDefault = true;
}; };
}; };
home.persistence."/persist/home/sajenim" = {
directories = [
# email configuration
".config/protonmail"
# email cache of messages
".local/share/protonmail"
# gpg encrypted passwords
".password-store"
];
};
} }

View file

@ -2,15 +2,4 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
weechat weechat
]; ];
home.persistence."/persist/home/sajenim" = {
directories = [
# WeeChat configuration files: *.conf, certificates, etc.
".config/weechat"
# WeeChat data files: logs, scripts, scripts data, xfer files, etc.
".local/share/weechat"
# WeeChat cache files: scripts cache.
".cache/weechat"
];
};
} }

View file

@ -7,10 +7,5 @@
openscad openscad
unstable.prusa-slicer unstable.prusa-slicer
]; ];
persistence."/persist/home/sajenim" = {
directories = [
".config/PrusaSlicer"
];
};
}; };
} }

View file

@ -24,28 +24,5 @@
# Misc # Misc
firefox firefox
]; ];
persistence."/persist/home/sajenim" = {
directories = [
".mozilla"
# Hidden user data
".repositories"
".print"
# Mutable configurations
".config/htop"
".config/lazygit"
".config/Yubico"
# Application specific data
".local/share/PrismLauncher"
".local/share/Jellyfin Media Player"
# Our user data
"Documents"
"Downloads"
"Games"
"Music"
"Pictures"
"Videos"
];
};
}; };
} }

View file

@ -1,10 +1,5 @@
{ {outputs, ...}: {
inputs,
outputs,
...
}: {
imports = [ imports = [
inputs.impermanence.nixosModules.home-manager.impermanence
../features/cli ../features/cli
]; ];
@ -28,22 +23,6 @@
sessionVariables = { sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";
}; };
persistence."/persist/home/sajenim" = {
directories = [
".gnupg"
".ssh"
".var/app"
".local/bin"
".local/share/flatpak"
".local/share/nix"
".local/share/direnv"
];
files = [
".zsh_history"
];
allowOther = true;
};
}; };
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";

View file

@ -8,6 +8,7 @@
imports = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
users.users.sajenim = { users.users.sajenim = {
isNormalUser = true; isNormalUser = true;
extraGroups = ["audio" "docker" "networkmanager" "wheel" "adbusers"]; extraGroups = ["audio" "docker" "networkmanager" "wheel" "adbusers"];
@ -26,4 +27,10 @@
}; };
backupFileExtension = "bak"; backupFileExtension = "bak";
}; };
fileSystems."/home/sajenim" = {
device = "/dev/disk/by-label/data";
fsType = "btrfs";
options = ["subvol=sajenim" "compress=zstd"];
};
} }

View file

@ -6,10 +6,17 @@
imports = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
users.users.spectre = { users.users.spectre = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
hashedPassword = "$y$j9T$eCJ0MDPsx3tww9LP0LU8..$sE8u5keO7QNKNAR1t2R6GqsDzvGD0Xn9Fi3to14Gf9/"; hashedPassword = "$y$j9T$eCJ0MDPsx3tww9LP0LU8..$sE8u5keO7QNKNAR1t2R6GqsDzvGD0Xn9Fi3to14Gf9/";
}; };
users.mutableUsers = false; users.mutableUsers = false;
fileSystems."/home/spectre" = {
device = "/dev/disk/by-label/data";
fsType = "btrfs";
options = ["subvol=spectre" "compress=zstd"];
};
} }