Compare commits
No commits in common. "36eed4c3d2310cc4a1e77d3b5018666802159a13" and "b1cd6018baad1dd73e8d10cd6be0b633e8682b47" have entirely different histories.
36eed4c3d2
...
b1cd6018ba
|
@ -17,17 +17,6 @@ in
|
|||
# ./open-pgsql.nix
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(
|
||||
self: super: {
|
||||
libbluray = super.libbluray.override {
|
||||
withAACS = true;
|
||||
withBDplus = true;
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.kernelParams = [ "acpi=force" "reboot=bios" ];
|
||||
|
@ -71,7 +60,6 @@ in
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
ntfsprogs
|
||||
smartmontools
|
||||
texlive.combined.scheme-full
|
||||
ncmpcpp
|
||||
];
|
||||
|
@ -100,6 +88,9 @@ in
|
|||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
@ -116,6 +107,11 @@ in
|
|||
4971 # BURP
|
||||
];
|
||||
|
||||
# Copy the NixOS configuration file and link it from the resulting system
|
||||
# (/run/current-system/configuration.nix). This is useful in case you
|
||||
# accidentally delete configuration.nix.
|
||||
# system.copySystemConfiguration = true;
|
||||
|
||||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
allowReboot = true;
|
||||
|
@ -139,22 +135,6 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
services.beesd = {
|
||||
filesystems = {
|
||||
"data" = {
|
||||
spec = "/data";
|
||||
hashTableSizeMB = 1024;
|
||||
verbosity = "alert";
|
||||
};
|
||||
"backup-disk" = {
|
||||
spec = "/mnt/backup";
|
||||
hashTableSizeMB = 1024;
|
||||
verbosity = "alert";
|
||||
};
|
||||
};
|
||||
};
|
||||
# Don’t start automatically
|
||||
systemd.services."beesd@backup-disk".wantedBy = lib.mkForce [];
|
||||
|
||||
security.acme = {
|
||||
defaults = {
|
||||
|
|
|
@ -14,8 +14,6 @@ in
|
|||
((lib.toLower config.networking.hostName) + ".lan")
|
||||
(lib.toLower config.networking.hostName)
|
||||
];
|
||||
blacklisted_files = [];
|
||||
trashbin_retention_obligation = "auto, 14";
|
||||
};
|
||||
config = {
|
||||
dbtype = "pgsql";
|
||||
|
|
Loading…
Reference in a new issue