test
This commit is contained in:
parent
bb5ff24151
commit
4db5ead22b
|
@ -39,8 +39,6 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
|
||||
users.users.tasia = {
|
||||
isNormalUser = true;
|
||||
description = "Tasia";
|
||||
|
@ -53,6 +51,17 @@ in {
|
|||
];
|
||||
};
|
||||
|
||||
users.users.vulpecula = {
|
||||
isNormalUser = true;
|
||||
description = "vulpecula";
|
||||
extraGroups = ["networkmanager" "wheel" "dialout"];
|
||||
initialPassword = "correcthorsebatterystaple";
|
||||
openssh.authorizedKeys.keys = [
|
||||
sshKeys.tasia.yubi-primary
|
||||
sshKeys.tasia.yubi-spare
|
||||
];
|
||||
};
|
||||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
recommendedProxySettings = true;
|
||||
|
@ -71,8 +80,8 @@ in {
|
|||
};
|
||||
|
||||
boot.tmp.cleanOnBoot = true;
|
||||
zramSwap.enable = true;
|
||||
networking.domain = "";
|
||||
# zramSwap.enable = true;
|
||||
# networking.domain = "";
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
@ -31,5 +31,7 @@
|
|||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
|
||||
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue