This commit is contained in:
2025-11-01 20:04:27 +09:00
parent 1bd7de8a39
commit 83aaabfa5b
7 changed files with 76 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ let
# Package configuration - sets up package system with proper overlays
# Most users won't need to modify this section
system = "x86_64-linux";
system = "x86_64-linux";
pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
@@ -108,16 +108,29 @@ in
nwg-displays
tk
scrot
yay
python313
python313Packages.pip
python313Packages.venvShellHook
python313Packages.numpy
stdenv.cc.cc.lib
pkg-config
gcc
glib
libgcc
gnumake
cmake
extra-cmake-modules
];
environment.sessionVariables = rec {
environment.sessionVariables = {
GTK_IM_MODULE = "kime";
QT_IM_MODULE = "kime";
XMODIFIERS = "@im=kime";
};
# System Version - Don't change unless you know what you're doing (helps with system upgrades and compatibility)
system.stateVersion = "25.05";
}