This commit is contained in:
Tasia Iso 2024-10-05 10:25:38 +02:00
parent bb5ff24151
commit 4db5ead22b
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
2 changed files with 15 additions and 4 deletions

View file

@ -39,8 +39,6 @@ in {
}; };
}; };
boot.loader.grub.device = "/dev/sda";
users.users.tasia = { users.users.tasia = {
isNormalUser = true; isNormalUser = true;
description = "Tasia"; 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 = { services.nginx = {
enable = true; enable = true;
recommendedProxySettings = true; recommendedProxySettings = true;
@ -71,8 +80,8 @@ in {
}; };
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
zramSwap.enable = true; # zramSwap.enable = true;
networking.domain = ""; # networking.domain = "";
system.stateVersion = "24.05"; system.stateVersion = "24.05";
} }

View file

@ -31,5 +31,7 @@
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.ens18.useDHCP = lib.mkDefault true; # networking.interfaces.ens18.useDHCP = lib.mkDefault true;
boot.loader.grub.device = "/dev/sda";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }