Compare commits

..

2 commits

4 changed files with 8 additions and 8 deletions

View file

@ -9,11 +9,11 @@
}; };
services.openssh = { services.openssh = {
passwordAuthentication = false; settings = {
permitRootLogin = "no"; PasswordAuthentication = false;
extraConfig = '' PermitRootLogin = "no";
StreamLocalBindUnlink yes StreamLocalBindUnlink = true;
''; };
}; };
environment.systemPackages = builtins.attrValues { environment.systemPackages = builtins.attrValues {

View file

@ -22,7 +22,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.tmpOnTmpfs = true; boot.tmp.useTmpfs = true;
boot.supportedFilesystems = [ boot.supportedFilesystems = [
"btrfs" "btrfs"

View file

@ -24,7 +24,7 @@ in {
devices = ["/dev/sda" "/dev/sdb"]; devices = ["/dev/sda" "/dev/sdb"];
}; };
boot.tmpOnTmpfs = true; boot.tmp.UseTmpfs = true;
networking.hostName = "hades"; # Define your hostname. networking.hostName = "hades"; # Define your hostname.
networking.domain = "alarsyo.net"; networking.domain = "alarsyo.net";

View file

@ -20,7 +20,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.tmpOnTmpfs = true; boot.tmp.useTmpfs = true;
services.btrfs = { services.btrfs = {
autoScrub = { autoScrub = {