16 lines
238 B
Nix
16 lines
238 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
with pkgs;
|
||
|
let
|
||
|
psCfg = config.pub-solar;
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
./configuration.nix
|
||
|
];
|
||
|
|
||
|
pub-solar.core.disk-encryption-active = false;
|
||
|
|
||
|
networking.networkmanager.enable = lib.mkForce false;
|
||
|
}
|