13 lines
277 B
Nix
13 lines
277 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
# not used for this profile but defines options used by the other imports
|
|
inputs.impermanence.nixosModules.impermanence
|
|
./cifs-client.nix
|
|
./consul.nix
|
|
./glusterfs-client.nix
|
|
./sshd.nix
|
|
./user-ppetru.nix
|
|
];
|
|
}
|