changes 10-06-25
This commit is contained in:
@@ -243,6 +243,10 @@ in {
|
||||
"super, l, movefocus, r"
|
||||
"super, k, movefocus, u"
|
||||
"super, j, movefocus, d"
|
||||
"super, y, exec, /home/pagedmov/splitman-ipc.sh start"
|
||||
"super, u, exec, /home/pagedmov/splitman-ipc.sh split"
|
||||
"super, i, exec, /home/pagedmov/splitman-ipc.sh stop"
|
||||
"super, o, exec, /home/pagedmov/splitman-ipc.sh pause"
|
||||
"super shift, h, movewindow, l"
|
||||
"super shift, l, movewindow, r"
|
||||
"super shift, k, movewindow, u"
|
||||
|
||||
@@ -38,12 +38,12 @@ in {
|
||||
name = "EnvyCodeR Nerd Font Mono";
|
||||
};
|
||||
sansSerif = {
|
||||
package = pkgs.nerd-fonts.envy-code-r;
|
||||
name = "EnvyCodeR Nerd Font Mono";
|
||||
package = pkgs.myPkgs.noto-sans-jp;
|
||||
name = "Noto Sans JP";
|
||||
};
|
||||
serif = {
|
||||
package = pkgs.nerd-fonts.envy-code-r;
|
||||
name = "EnvyCodeR Nerd Font Mono";
|
||||
package = pkgs.myPkgs.noto-sans-jp;
|
||||
name = "Noto Sans JP";
|
||||
};
|
||||
sizes = {
|
||||
desktop = 10;
|
||||
|
||||
@@ -53,6 +53,8 @@ in {
|
||||
librewolf
|
||||
spotify
|
||||
zathura
|
||||
tor
|
||||
tor-browser
|
||||
chromium
|
||||
obs-studio
|
||||
gparted
|
||||
@@ -76,6 +78,7 @@ in {
|
||||
fira-code
|
||||
nerd-fonts.fira-code
|
||||
nodejs_latest
|
||||
myPkgs.noto-sans-jp
|
||||
] ++ scripts;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
11
modules/sys/hardware/input.nix
Normal file
11
modules/sys/hardware/input.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, pkgs, ... }: {
|
||||
i18n.inputMethod = {
|
||||
type = "fcitx5";
|
||||
enable = true;
|
||||
fcitx5.addons = with pkgs; [
|
||||
fcitx5-gtk
|
||||
fcitx5-tokyonight
|
||||
fcitx5-mozc
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -17,6 +17,7 @@
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [ 443 8080 ];
|
||||
allowedUDPPorts = [ 27960 ];
|
||||
trustedInterfaces = [ "vnet9" "virbr0" "enp0s2" ];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -43,6 +43,7 @@
|
||||
uhk-agent
|
||||
jq
|
||||
jinja2-cli
|
||||
socat
|
||||
python3
|
||||
python313Packages.jinja2
|
||||
python313Packages.pillow
|
||||
|
||||
Reference in New Issue
Block a user