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;