mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
26 lines
433 B
Nix
26 lines
433 B
Nix
|
{
|
||
|
input,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./styx
|
||
|
];
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
nix.package = pkgs.nixUnstable;
|
||
|
nix.extraOptions = ''
|
||
|
experimental-features = nix-command flakes
|
||
|
'';
|
||
|
|
||
|
nix.optimise.automatic = true;
|
||
|
nix.gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 30d";
|
||
|
};
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
nix-output-monitor
|
||
|
alejandra
|
||
|
];
|
||
|
}
|