move in gnome and hyprland modules
This commit is contained in:
parent
8f98c86acb
commit
a87c3abb02
4 changed files with 1095 additions and 0 deletions
254
modules/gnome/home.nix
Normal file
254
modules/gnome/home.nix
Normal file
|
|
@ -0,0 +1,254 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
cfg = config.gnome-home-custom;
|
||||
# Import gvariant helpers for dconf types
|
||||
mkTuple = lib.hm.gvariant.mkTuple;
|
||||
mkUint32 = lib.hm.gvariant.mkUint32;
|
||||
in
|
||||
|
||||
{
|
||||
options.gnome-home-custom = {
|
||||
alwaysShowTopBar = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Always show the GNOME top bar (status bar). When false, uses Hide Top Bar extension to auto-hide it.";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
# GNOME configuration via dconf
|
||||
dconf.settings = {
|
||||
# Interface settings
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
gtk-theme = "Adwaita-dark";
|
||||
cursor-theme = "Adwaita";
|
||||
};
|
||||
|
||||
# Touchpad settings
|
||||
"org/gnome/desktop/peripherals/touchpad" = {
|
||||
tap-to-click = false;
|
||||
natural-scroll = true;
|
||||
};
|
||||
|
||||
# Input sources - US English, Chinese Pinyin, Japanese
|
||||
"org/gnome/desktop/input-sources" = {
|
||||
sources = [
|
||||
(mkTuple [ "xkb" "us" ])
|
||||
(mkTuple [ "ibus" "libpinyin" ])
|
||||
];
|
||||
xkb-options = [ "" ];
|
||||
};
|
||||
|
||||
# GNOME Shell configuration
|
||||
"org/gnome/shell" = {
|
||||
disable-user-extensions = false;
|
||||
enabled-extensions =
|
||||
(lib.optionals (!cfg.alwaysShowTopBar) [ "hidetopbar@mathieu.bidon.ca" ])
|
||||
++ [
|
||||
"pano@elhan.io"
|
||||
];
|
||||
favorite-apps = [
|
||||
"thunar.desktop"
|
||||
"com.mitchellh.ghostty.desktop"
|
||||
"cursor.desktop"
|
||||
"firefox.desktop"
|
||||
"obsidian.desktop"
|
||||
"org.keepassxc.KeePassXC.desktop"
|
||||
];
|
||||
};
|
||||
|
||||
# Hide Top Bar extension configuration
|
||||
# Always hide the top bar except in Activities Overview (Super key)
|
||||
"org/gnome/shell/extensions/hidetopbar" = lib.mkIf (!cfg.alwaysShowTopBar) {
|
||||
enable-intellihide = false;
|
||||
enable-active-window = false;
|
||||
mouse-sensitive = false;
|
||||
mouse-sensitive-fullscreen-window = false;
|
||||
};
|
||||
|
||||
# Pano clipboard manager extension configuration
|
||||
"org/gnome/shell/extensions/pano" = {
|
||||
# Keybinding to open clipboard panel
|
||||
global-shortcut = [ "<Super>c" ];
|
||||
# Keep 100 items in clipboard history
|
||||
history-length = mkUint32 100;
|
||||
};
|
||||
|
||||
# Desktop background configuration
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-uri = "file:///home/yanlin/Documents/app-state/nixos-nineish-dark@4k.png";
|
||||
picture-uri-dark = "file:///home/yanlin/Documents/app-state/nixos-nineish-dark@4k.png";
|
||||
picture-options = "zoom";
|
||||
};
|
||||
|
||||
# Disable GNOME Software auto-updates
|
||||
"org/gnome/software" = {
|
||||
download-updates = false;
|
||||
download-updates-notify = false;
|
||||
};
|
||||
|
||||
# Notification settings
|
||||
"org/gnome/desktop/notifications" = {
|
||||
show-banners = false; # Disable notification popups (still logged in notification center)
|
||||
};
|
||||
|
||||
# Sound settings
|
||||
"org/gnome/desktop/sound" = {
|
||||
event-sounds = false; # Disable notification sounds
|
||||
};
|
||||
|
||||
# Screen timeout settings
|
||||
# Setup: ThinkPad laptop (lid closed) + 4K TV as external monitor
|
||||
"org/gnome/desktop/session" = {
|
||||
idle-delay = mkUint32 900; # Screen blank after 15 minutes (900 seconds)
|
||||
};
|
||||
|
||||
"org/gnome/settings-daemon/plugins/power" = {
|
||||
idle-dim = false; # Don't dim screen before blanking
|
||||
};
|
||||
|
||||
# IBus libpinyin (Chinese Pinyin) configuration
|
||||
"com/github/libpinyin/ibus-libpinyin/libpinyin" = {
|
||||
lookup-table-page-size = 7; # Number of candidates displayed (default: 5)
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
# Configure cursor theme system-wide
|
||||
home.pointerCursor = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.adwaita-icon-theme;
|
||||
size = 24;
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
};
|
||||
|
||||
# Configure GTK theme and icon theme
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "Adwaita-dark";
|
||||
package = pkgs.gnome-themes-extra;
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.papirus-icon-theme;
|
||||
name = "Papirus-Dark";
|
||||
};
|
||||
gtk3.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = 1;
|
||||
};
|
||||
gtk4.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = 1;
|
||||
};
|
||||
};
|
||||
|
||||
# Configure XDG user directories
|
||||
xdg.userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
|
||||
# Keep these directories
|
||||
desktop = "${config.home.homeDirectory}/Desktop";
|
||||
documents = "${config.home.homeDirectory}/Documents";
|
||||
download = "${config.home.homeDirectory}/Downloads";
|
||||
|
||||
# Disable unwanted directories
|
||||
music = null;
|
||||
videos = null;
|
||||
publicShare = null;
|
||||
templates = null;
|
||||
};
|
||||
|
||||
# GNOME Shell extensions and Qt theming packages
|
||||
home.packages = with pkgs;
|
||||
(lib.optionals (!cfg.alwaysShowTopBar) [ gnomeExtensions.hide-top-bar ])
|
||||
++ [
|
||||
gnomeExtensions.pano
|
||||
xfce.thunar
|
||||
];
|
||||
|
||||
# Custom desktop file for opening text files with Neovim in Ghostty
|
||||
home.file.".local/share/applications/nvim-ghostty.desktop".text = ''
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Neovim (Ghostty)
|
||||
Comment=Edit text files with Neovim in Ghostty terminal
|
||||
Exec=ghostty -e nvim %F
|
||||
Terminal=false
|
||||
Categories=TextEditor;Utility;
|
||||
MimeType=text/plain;text/markdown;text/x-nix;text/x-shellscript;text/x-log;text/csv;text/html;text/css;text/xml;text/x-python;text/x-python3;text/x-c;text/x-c++src;text/x-chdr;text/x-c++hdr;text/x-java;text/x-tex;text/x-latex;application/x-yaml;application/json;application/xml;application/xhtml+xml;application/javascript;application/typescript;application/x-python;application/x-ipynb+json;application/toml;application/x-npy;
|
||||
Icon=nvim
|
||||
'';
|
||||
|
||||
# Configure default applications for file types
|
||||
xdg.mimeApps = {
|
||||
enable = true;
|
||||
defaultApplications = {
|
||||
# Directories
|
||||
"inode/directory" = "Thunar.desktop";
|
||||
|
||||
# PDF documents
|
||||
"application/pdf" = "org.gnome.Evince.desktop";
|
||||
|
||||
# Images
|
||||
"image/png" = "org.gnome.Loupe.desktop";
|
||||
"image/jpeg" = "org.gnome.Loupe.desktop";
|
||||
"image/jpg" = "org.gnome.Loupe.desktop";
|
||||
"image/gif" = "org.gnome.Loupe.desktop";
|
||||
"image/webp" = "org.gnome.Loupe.desktop";
|
||||
"image/svg+xml" = "org.gnome.Loupe.desktop";
|
||||
"image/bmp" = "org.gnome.Loupe.desktop";
|
||||
"image/heic" = "org.gnome.Loupe.desktop";
|
||||
"image/heif" = "org.gnome.Loupe.desktop";
|
||||
"image/tiff" = "org.gnome.Loupe.desktop";
|
||||
|
||||
# Videos
|
||||
"video/mp4" = "vlc.desktop";
|
||||
"video/mpeg" = "vlc.desktop";
|
||||
"video/quicktime" = "vlc.desktop";
|
||||
"video/x-msvideo" = "vlc.desktop";
|
||||
"video/x-matroska" = "vlc.desktop";
|
||||
"video/webm" = "vlc.desktop";
|
||||
"video/ogg" = "vlc.desktop";
|
||||
"video/x-flv" = "vlc.desktop";
|
||||
"video/3gpp" = "vlc.desktop";
|
||||
|
||||
# Text and code files
|
||||
"text/plain" = "nvim-ghostty.desktop";
|
||||
"text/markdown" = "nvim-ghostty.desktop";
|
||||
"text/x-nix" = "nvim-ghostty.desktop";
|
||||
"text/x-shellscript" = "nvim-ghostty.desktop";
|
||||
"text/x-log" = "nvim-ghostty.desktop";
|
||||
"text/csv" = "nvim-ghostty.desktop";
|
||||
"text/html" = "nvim-ghostty.desktop";
|
||||
"text/css" = "nvim-ghostty.desktop";
|
||||
"text/xml" = "nvim-ghostty.desktop";
|
||||
"text/x-python" = "nvim-ghostty.desktop";
|
||||
"text/x-python3" = "nvim-ghostty.desktop";
|
||||
"text/x-c" = "nvim-ghostty.desktop";
|
||||
"text/x-c++src" = "nvim-ghostty.desktop";
|
||||
"text/x-chdr" = "nvim-ghostty.desktop";
|
||||
"text/x-c++hdr" = "nvim-ghostty.desktop";
|
||||
"text/x-java" = "nvim-ghostty.desktop";
|
||||
"text/x-tex" = "nvim-ghostty.desktop";
|
||||
"text/x-latex" = "nvim-ghostty.desktop";
|
||||
"application/x-yaml" = "nvim-ghostty.desktop";
|
||||
"application/json" = "nvim-ghostty.desktop";
|
||||
"application/xml" = "nvim-ghostty.desktop";
|
||||
"application/xhtml+xml" = "nvim-ghostty.desktop";
|
||||
"application/javascript" = "nvim-ghostty.desktop";
|
||||
"application/typescript" = "nvim-ghostty.desktop";
|
||||
"application/x-python" = "nvim-ghostty.desktop";
|
||||
"application/x-ipynb+json" = "nvim-ghostty.desktop";
|
||||
"application/toml" = "nvim-ghostty.desktop";
|
||||
"application/x-npy" = "nvim-ghostty.desktop";
|
||||
|
||||
# Terminal emulator
|
||||
"x-scheme-handler/terminal" = "com.mitchellh.ghostty.desktop";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue