Removed Snowfall-Lib for actual Builds
Some checks failed
/ Check Nix Flake (push) Failing after 1m18s

This commit is contained in:
Kaybee 2024-12-10 19:40:11 +01:00
parent d2d1dfa995
commit 408fdc4198
No known key found for this signature in database

View file

@ -14,37 +14,45 @@
nix-minecraft.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: inputs.snowfall-lib.mkFlake {
inherit inputs;
src = ./.;
# outputs = inputs: inputs.snowfall-lib.mkFlake {
# inherit inputs;
# src = ./.;
channels-config.allowUnfree = false;
# channels-config.allowUnfree = false;
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
# nix.gc = {
# automatic = true;
# options = "--delete-older-than 30d";
# };
# nix.optimise.automatic = true;
# # Modules for Host HyperC
# systems.hosts.HyperC.modules = with inputs; [
# ];
# # Modules for Host voloxo
# systems.hosts.voloxo.modules = with inputs; [
# ];
# # Modules for Host kb-games-01
# systems.hosts.kb-games-01.modules = with inputs; [
# ];
# # Modules that get imported to every NixOS system
# systems.modules.nixos = with inputs; [
# lix-module.nixosModules.default
# ];
# outputs-builder = channels: { formatter = channels.nixpkgs.nixfmt-rfc-style; };
# };
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations."Rubtrm" = nixpkgs.lib.nixosSystem {
system = "i686-linux";
modules = [ ./systems/i686-linux/Rubtrm/default.nix ];
};
nix.optimise.automatic = true;
# Modules for Host HyperC
systems.hosts.HyperC.modules = with inputs; [
];
# Modules for Host voloxo
systems.hosts.voloxo.modules = with inputs; [
];
# Modules for Host kb-games-01
systems.hosts.kb-games-01.modules = with inputs; [
];
# Modules that get imported to every NixOS system
systems.modules.nixos = with inputs; [
lix-module.nixosModules.default
];
outputs-builder = channels: { formatter = channels.nixpkgs.nixfmt-rfc-style; };
};
}