changes 10-06-25

This commit is contained in:
2025-10-06 19:19:39 -04:00
parent d10d239e2e
commit 79ffcea64b
11 changed files with 148 additions and 97 deletions

View File

@@ -1,5 +1,8 @@
{ inputs, nixpkgs, nixvim, config, self, username, host, ... }: {
imports = [ (import ./bootloader.nix) ] ++ [ (import ./network.nix) ]
++ [ (import ./powerprofiles.nix) ]
++ [ (import ./kernel.nix) ];
++ [ (import ./kernel.nix) ]
++ [ (import ./input.nix) ];
hardware.keyboard.uhk.enable = true;
}

View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }: {
i18n.inputMethod = {
type = "fcitx5";
enable = true;
fcitx5.addons = with pkgs; [
fcitx5-gtk
fcitx5-tokyonight
fcitx5-mozc
];
};
}

View File

@@ -17,6 +17,7 @@
firewall = {
enable = true;
allowedTCPPorts = [ 443 8080 ];
allowedUDPPorts = [ 27960 ];
trustedInterfaces = [ "vnet9" "virbr0" "enp0s2" ];
};
};