Compare commits
2 commits
a7fdb7cebb
...
26d7a0bcd4
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | 26d7a0bcd4 | ||
Antoine Martin | e237da22a6 |
|
@ -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 {
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in a new issue