Joe Hanson
6a278729f8
* reduce, reuse, refine * more refining and replacing * More refining * Removing unused code such as homepage and traefik * Remove homepage references.
14 lines
379 B
Nix
14 lines
379 B
Nix
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
{
|
|
system = {
|
|
# Enable printing changes on nix build etc with nvd
|
|
activationScripts.report-changes = ''
|
|
PATH=$PATH:${lib.makeBinPath [ pkgs.nvd pkgs.nix ]}
|
|
nvd diff $(ls -dv /nix/var/nix/profiles/system-*-link | tail -2)
|
|
'';
|
|
|
|
# Do not change unless you know what you are doing
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|