add gnome to thinkpad

This commit is contained in:
Yan Lin 2025-10-20 14:57:36 +02:00
parent 7d2d987f04
commit 62041231b9
3 changed files with 165 additions and 2 deletions

View file

@ -9,8 +9,24 @@
../home-default.nix
../../../modules/syncthing.nix
../../../modules/tex.nix
../../../modules/gnome.nix
../../../modules/firefox.nix
];
# Any ThinkPad-specific home configurations can be added here
# For example, laptop-specific aliases or scripts
# Enable GNOME configuration
programs.gnome-custom = {
enable = true;
};
# Enable Firefox browser
programs.firefox-custom = {
enable = true;
package = pkgs.firefox;
};
# ThinkPad-specific applications
home.packages = with pkgs; [
obsidian
keepassxc
];
}