hosts/workstation | update to match changes upstream

This commit is contained in:
Don Harper 2024-08-10 11:29:14 -05:00
parent 8f758f30e1
commit e9c77afd73

View file

@ -53,14 +53,17 @@ in {
}; };
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.utf8"; i18n = {
i18n.inputMethod = { defaultLocale = "en_US.utf8";
enabled = "fcitx5"; inputMethod = {
enabled = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5.addons = with pkgs; [
fcitx5-mozc fcitx5-mozc
fcitx5-gtk fcitx5-gtk
]; ];
}; };
};
# Bootloader. # Bootloader.
boot = { boot = {
@ -219,7 +222,16 @@ in {
]; ];
}; };
users.users.don = { users = {
users = {
root = {
initialPassword = "changeme";
description = "root of all evil";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki"
];
};
don = {
isNormalUser = true; isNormalUser = true;
initialPassword = "changeme"; initialPassword = "changeme";
description = "Don Harper"; description = "Don Harper";
@ -228,6 +240,8 @@ in {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki"
]; ];
}; };
};
};
zramSwap = { zramSwap = {
enable = true; enable = true;