更新gnome/docker配置

This commit is contained in:
2025-05-07 15:20:28 +08:00
parent 457028533e
commit 79d3ca7ec4
4 changed files with 16 additions and 10 deletions

View File

@@ -13,7 +13,6 @@
# You can also split up your configuration and import pieces of it here: # You can also split up your configuration and import pieces of it here:
./core.nix ./core.nix
../modules/home/hyprland
../modules/home/vscode ../modules/home/vscode
../modules/home/zsh ../modules/home/zsh
../modules/home/xdg.nix ../modules/home/xdg.nix

View File

@@ -8,22 +8,21 @@
environment = { environment = {
systemPackages = (with pkgs;[ systemPackages = (with pkgs;[
gnome.gnome-tweaks gnome-tweaks
gnome-shell-extensions
]) ++ (with pkgs.gnomeExtensions;[ ]) ++ (with pkgs.gnomeExtensions;[
dash-to-dock dash-to-dock
captivate # cap button indicator
appindicator # tray icon appindicator # tray icon
]); ]);
gnome.excludePackages = (with pkgs; [ gnome.excludePackages = (with pkgs; [
atomix # puzzle game
cheese # webcam tool
gnome-photos gnome-photos
gnome-tour gnome-tour
gnome-text-editor gnome-text-editor
]) ++ (with pkgs.gnome; [
atomix # puzzle game
cheese # webcam tool
epiphany # web browser epiphany # web browser
# geary # email reader geary # email reader
evince # document viewer evince # document viewer
gedit # text editor gedit # text editor
gnome-contacts gnome-contacts
@@ -39,6 +38,14 @@
tali # poker game tali # poker game
yelp # help viewer yelp # help viewer
]); ]);
variables = {
"GTK_IM_MODULE" = "fcitx";
"QT_IM_MODULE" = "fcitx";
"XMODIFIERS" = "@im=fcitx";
"SDL_IM_MODULE" = "fcitx";
"GLFW_IM_MODULE" = "ibus";
};
}; };
} }

View File

@@ -8,6 +8,7 @@
userland-proxy = false; userland-proxy = false;
experimental = true; experimental = true;
ipv6 = true; ipv6 = true;
ip6tables = true;
fixed-cidr-v6 = "fd00::/80"; fixed-cidr-v6 = "fd00::/80";
metrics-addr = "0.0.0.0:9323"; metrics-addr = "0.0.0.0:9323";
log-driver = "json-file"; log-driver = "json-file";

View File

@@ -1,11 +1,10 @@
{ pkgs, ... }: { { self, pkgs, ... }: {
imports = [ imports = [
./ssh ./ssh
./hyprland.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
nextcloud-client nextcloud-client
kodi-wayland kodi
]; ];
} }