1
Fork 0
satellite/home/euporie.nix

21 lines
434 B
Nix
Raw Normal View History

2023-05-28 02:00:10 +02:00
{
imports = [
2023-12-02 00:46:56 +01:00
./global.nix
2023-05-28 02:00:10 +02:00
./features/wayland/hyprland
];
# Set up my custom imperanence wrapper
satellite.persistence = {
enable = true;
# Actual data/media (eg: projects, images, videos, etc)
at.data.path = "/persist/data";
# App state I want to keep
at.state.path = "/persist/state";
# App state which I should be able to delete at any point
at.cache.path = "/persist/cache";
};
}