chore: pretty up with alejandra

This commit is contained in:
Peritia 2025-09-22 16:16:02 +02:00
parent 7bbda6140f
commit 37b85877bb
75 changed files with 584 additions and 452 deletions

View file

@ -10,25 +10,28 @@
};
};
outputs = { self, nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
################################################################
# NixOS Modules
################################################################
nixosModules = {
default = import ./Modules/System;
hardware = import ./Modules/Hardware;
};
################################################################
# Home Manager Modules
################################################################
homeManagerModules = {
default = import ./Modules/Home;
};
outputs = {
self,
nixpkgs,
home-manager,
...
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
in {
################################################################
# NixOS Modules
################################################################
nixosModules = {
default = import ./Modules/System;
hardware = import ./Modules/Hardware;
};
################################################################
# Home Manager Modules
################################################################
homeManagerModules = {
default = import ./Modules/Home;
};
};
}