nix/hosts/nixos/deck/home.nix
2025-11-02 21:32:41 +01:00

39 lines
822 B
Nix

{ config, pkgs, ... }:
{
# Allow unfree packages in home-manager
nixpkgs.config.allowUnfree = true;
# Import the common NixOS home configuration
imports = [
../home-default.nix
../../../modules/syncthing.nix
../../../modules/firefox.nix
../../../modules/ghostty.nix
../../../modules/gnome.nix
];
# Always show GNOME top bar on Steam Deck
gnome-custom.alwaysShowTopBar = true;
# Enable Ghostty terminal with OSC-52 clipboard support
programs.ghostty-custom = {
enable = true;
package = pkgs.ghostty;
fontSize = 12;
windowMode = "maximized";
};
# Enable Firefox browser
programs.firefox-custom = {
enable = true;
package = pkgs.firefox;
};
# ThinkPad-specific applications
home.packages = with pkgs; [
obsidian
keepassxc
vlc
];
}