os/hosts/giggles/giggles.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
305 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}:
with lib; let
2022-08-21 22:53:04 +00:00
psCfg = config.pub-solar;
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
in {
2022-08-21 22:53:04 +00:00
imports = [
./configuration.nix
];
config = {
boot.plymouth.enable = lib.mkForce false;
pub-solar.nextcloud.enable = lib.mkForce false;
};
}