mirror of
https://git.kb-one.de/kb01/aux-config.git
synced 2025-12-05 18:28:53 +00:00
Removed Snowfall-Lib for actual Builds
This commit is contained in:
parent
d2d1dfa995
commit
408fdc4198
64
flake.nix
64
flake.nix
|
|
@ -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; };
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue