nix-config/modules/system/default.nix
Bruno BELANYI 808b5b7048 WIP: modules: systems: add persist
This is the module that takes care of configuring impermanence at the
system level.

WIP:
    * address FIXMEs
    * activate home-manager persistence?
        * set `programs.fuse.userAllowOther = true;` ?
    * point `age` to persisted paths [1] ?
    * make sure all services and modules are persisted correctly...

[1]: b1d18d25b8
2021-11-18 21:16:35 +01:00

15 lines
155 B
Nix

# System-related modules
{ ... }:
{
imports = [
./boot
./documentation
./language
./nix
./packages
./persist
./users
];
}