Removed Snowfall-Lib for actual Builds
Some checks failed
/ Check Nix Flake (push) Failing after 1m18s
Some checks failed
/ Check Nix Flake (push) Failing after 1m18s
This commit is contained in:
parent
d2d1dfa995
commit
408fdc4198
1 changed files with 36 additions and 28 deletions
64
flake.nix
64
flake.nix
|
@ -14,37 +14,45 @@
|
||||||
nix-minecraft.inputs.nixpkgs.follows = "nixpkgs";
|
nix-minecraft.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs: inputs.snowfall-lib.mkFlake {
|
# outputs = inputs: inputs.snowfall-lib.mkFlake {
|
||||||
inherit inputs;
|
# inherit inputs;
|
||||||
src = ./.;
|
# src = ./.;
|
||||||
|
|
||||||
channels-config.allowUnfree = false;
|
# channels-config.allowUnfree = false;
|
||||||
|
|
||||||
nix.gc = {
|
# nix.gc = {
|
||||||
automatic = true;
|
# automatic = true;
|
||||||
options = "--delete-older-than 30d";
|
# 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; };
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue