更新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:
./core.nix
../modules/home/hyprland
../modules/home/vscode
../modules/home/zsh
../modules/home/xdg.nix

View File

@@ -8,22 +8,21 @@
environment = {
systemPackages = (with pkgs;[
gnome.gnome-tweaks
gnome-tweaks
gnome-shell-extensions
]) ++ (with pkgs.gnomeExtensions;[
dash-to-dock
captivate # cap button indicator
appindicator # tray icon
]);
gnome.excludePackages = (with pkgs; [
atomix # puzzle game
cheese # webcam tool
gnome-photos
gnome-tour
gnome-text-editor
]) ++ (with pkgs.gnome; [
atomix # puzzle game
cheese # webcam tool
epiphany # web browser
# geary # email reader
geary # email reader
evince # document viewer
gedit # text editor
gnome-contacts
@@ -39,6 +38,14 @@
tali # poker game
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;
experimental = true;
ipv6 = true;
ip6tables = true;
fixed-cidr-v6 = "fd00::/80";
metrics-addr = "0.0.0.0:9323";
log-driver = "json-file";

View File

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