Backup before server rebuild
This commit is contained in:
parent
ad4b1b1de4
commit
fbcdcf6cfd
24 changed files with 515 additions and 404 deletions
hosts/nixos/tethys
|
@ -1,6 +1,10 @@
|
|||
{ inputs, ... }: {
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
imports = [ inputs.darkmatter-grub-theme.nixosModule ];
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/314425
|
||||
boot.kernelPackages = pkgs.linuxPackages_6_12;
|
||||
|
||||
# See [the wiki page](https://nixos.wiki/wiki/Dual_Booting_NixOS_and_Windows)
|
||||
boot.loader = {
|
||||
efi = {
|
||||
|
|
|
@ -62,4 +62,15 @@
|
|||
# {{{ SSH keys
|
||||
users.users.pilot.openssh.authorizedKeys.keyFiles = [ ../calypso/keys/id_ed25519.pub ];
|
||||
# }}}
|
||||
|
||||
i18n.inputMethod = {
|
||||
type = "fcitx5";
|
||||
enable = true;
|
||||
fcitx5.addons = with pkgs; [
|
||||
fcitx5-mozc # for japanese input
|
||||
fcitx5-gtk
|
||||
];
|
||||
fcitx5.waylandFrontend = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
# }}}
|
||||
# {{{ Misc
|
||||
hardware.enableAllFirmware = true;
|
||||
hardware.opengl.enable = true;
|
||||
hardware.graphics.enable = true;
|
||||
hardware.opentabletdriver.enable = true;
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
# }}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue