project-wide: nixdirfmt

This commit is contained in:
kat witch 2021-04-26 01:30:25 +01:00
parent aa1f72eeca
commit 53f9ff3730
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
12 changed files with 70 additions and 79 deletions

View file

@ -1,7 +1,6 @@
{ sources, lib, ... }:
let
hexchen = (import sources.nix-hexchen) {};
let hexchen = (import sources.nix-hexchen) { };
in {
imports = [
./deploy
@ -12,6 +11,6 @@ in {
];
# stubs for hexchens modules, until more generalized
options.hexchen.dns = lib.mkOption {};
options.hexchen.deploy = lib.mkOption {};
options.hexchen.dns = lib.mkOption { };
options.hexchen.deploy = lib.mkOption { };
}