Format home manager flake (nixfmt)

main
Hektor Misplon 2025-10-28 00:19:28 +01:00
parent 01264a395d
commit 966065dd30
1 changed files with 9 additions and 2 deletions

View File

@ -11,7 +11,13 @@
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, nixgl, ... }@inputs:
outputs =
{
nixpkgs,
home-manager,
nixgl,
...
}@inputs:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
@ -20,7 +26,8 @@
overlays = [ nixgl.overlay ];
config.allowUnfree = true;
};
in {
in
{
homeConfigurations = {
work = home-manager.lib.homeManagerConfiguration {
inherit pkgs;