Fix formatting

This commit is contained in:
2026-07-12 18:07:46 +01:00
parent ebf3e773c6
commit 1edf4af07f
14 changed files with 346 additions and 171 deletions
+14
View File
@@ -24,6 +24,9 @@
home-manager.users.root = import ./home/root.nix;
}
];
pkgs = import nixpkgs {
inherit system;
};
in {
nixosConfigurations = {
syedm = nixpkgs.lib.nixosSystem {
@@ -43,5 +46,16 @@
];
};
};
# For development
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
nil
nixfmt
lua-language-server
stylua
];
};
};
}