chore: pretty up with alejandra
This commit is contained in:
parent
7bbda6140f
commit
37b85877bb
75 changed files with 584 additions and 452 deletions
43
flake.nix
43
flake.nix
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue