minimal working state
This commit is contained in:
parent
855430ef16
commit
6c1a0a5d33
26 changed files with 331 additions and 326 deletions
|
|
@ -15,22 +15,28 @@
|
|||
mix,
|
||||
inputs,
|
||||
...
|
||||
} @ args:
|
||||
mix.newMixture args (mixture: {
|
||||
submods.public = [
|
||||
./snow
|
||||
];
|
||||
} @ args: let
|
||||
mixArgs =
|
||||
args
|
||||
// {
|
||||
inherit (inputs.nixpkgs) lib;
|
||||
};
|
||||
in
|
||||
mix.newMixture mixArgs (mixture: {
|
||||
submods.public = [
|
||||
./snow
|
||||
];
|
||||
|
||||
version = "0.2.6-alpha";
|
||||
version = "0.2.6-alpha";
|
||||
|
||||
overlays = [
|
||||
# build deploy-rs as a package not from the flake input,
|
||||
# hence we can rely on a nixpkg binary cache.
|
||||
inputs.deploy-rs.overlays.default
|
||||
];
|
||||
overlays = [
|
||||
# build deploy-rs as a package not from the flake input,
|
||||
# hence we can rely on a nixpkg binary cache.
|
||||
inputs.deploy-rs.overlays.default
|
||||
];
|
||||
|
||||
nixosModules = rec {
|
||||
default = cerulean;
|
||||
cerulean = ./nixos;
|
||||
};
|
||||
})
|
||||
nixosModules = rec {
|
||||
default = cerulean;
|
||||
cerulean = ./nixos;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue