This commit is contained in:
2024-04-20 11:37:18 +02:00
parent bc33898566
commit e6fac59270
3 changed files with 33 additions and 0 deletions

View File

@@ -6,6 +6,19 @@
pkgs,
...
}: {
# Auto-upgrade in the background
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input"
"nixpkgs"
"-L"
];
dates = "09:00";
randomizedDelaySec = "45min";
};
environment.systemPackages = (with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
@@ -21,4 +34,12 @@
environment.sessionVariables = {
FLAKE = "/home/mike/.dots";
};
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
# Add any missing dynamic libraries for unpackaged
# programs here, NOT in environment.systemPackages
];
};
}