11 lines
200 B
Nix
11 lines
200 B
Nix
|
{ self, config, lib, pkgs, ... }:
|
||
|
let inherit (lib) fileContents;
|
||
|
in
|
||
|
{
|
||
|
imports = [ ../cachix ];
|
||
|
config = {
|
||
|
pub-solar.printing.enable = true;
|
||
|
pub-solar.x-os.enableBootLoader = true;
|
||
|
};
|
||
|
}
|