17 lines
277 B
Nix
17 lines
277 B
Nix
{
|
|
self,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) fileContents;
|
|
in {
|
|
imports = [../cachix];
|
|
config = {
|
|
pub-solar.graphical.wayland.software-renderer.enable = true;
|
|
pub-solar.sway.terminal = "foot";
|
|
pub-solar.core.iso-options.enable = true;
|
|
};
|
|
}
|