nix-config/modules/nixos/system/default.nix
Bruno BELANYI 605934d230 WIP: nixos: system: 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
2024-07-02 16:23:41 +00:00

19 lines
209 B
Nix

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