fix: auto formatter

This commit is contained in:
Ranomier 2025-05-08 20:36:52 +02:00
parent 59f507bc06
commit 7724f8cc5f
14 changed files with 47 additions and 52 deletions

View file

@ -10,7 +10,6 @@ inArgs: let
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
forAllSystems = inArgs.nixpkgs.lib.genAttrs systems;
in {
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
@ -18,10 +17,12 @@ in {
crocoite = {stateVersion = "24.05";};
jitsi = {stateVersion = "24.11";};
game-luanti = {stateVersion = "25.05"; unstable = true;};
game-luanti = {
stateVersion = "25.05";
unstable = true;
};
};
# Your custom packages
# Accessible through 'nix build', 'nix shell', etc
#packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});