chore: improve formatting

This commit is contained in:
Donovan Glover
2024-12-15 18:56:39 -05:00
parent 6009841203
commit ec1e48b793
5 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,7 @@
outputs =
{ nix-config, ... }@attrs:
let
inherit (nix-config.inputs) nixpkgs;
inherit (nixpkgs.lib) nixosSystem optional;
@ -17,6 +18,7 @@
hyprland = nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [
./configuration.nix
] ++ optional (pathExists ./hardware-configuration.nix) ./hardware-configuration.nix;