From 9cc83f84b0c58c431d37d83d6cf1387f0c414f1a Mon Sep 17 00:00:00 2001 From: aaron Date: Wed, 10 Dec 2025 19:18:49 +0100 Subject: [PATCH] feat: add dark theme, add some programs --- hosts/neon/configuration.nix | 4 ++++ hosts/neon/home.nix | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/hosts/neon/configuration.nix b/hosts/neon/configuration.nix index a24756d..9e8639c 100644 --- a/hosts/neon/configuration.nix +++ b/hosts/neon/configuration.nix @@ -120,6 +120,10 @@ enableSSHSupport = true; }; + # enable steam on this machine + nixpkgs.config.allowUnfree = true; + programs.steam.enable = true; + # enable the OpenSSH daemon services.openssh.enable = true; diff --git a/hosts/neon/home.nix b/hosts/neon/home.nix index fd4d529..8ca38fb 100644 --- a/hosts/neon/home.nix +++ b/hosts/neon/home.nix @@ -15,10 +15,13 @@ jq mtr iperf3 + imagemagick + imv dnsutils ldns socat nmap + keepassxc cowsay file which @@ -59,6 +62,25 @@ EDITOR = "vim"; }; + # set gtk theme + gtk = { + enable = true; + theme = { + name = "Adwaita-dark"; + package = pkgs.gnome-themes-extra; + }; + }; + + # set qt theme + qt = { + enable = true; + platformTheme.name = "adwaita"; + style.name = "adwaita-dark"; + }; + + # enable syncthing for user + services.syncthing.enable = true; + # enable home manager programs.home-manager.enable = true;