From 1d9d7b2ef4838313499989b3537cb0f23bb44a21 Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 20 Aug 2022 13:12:42 +0200 Subject: [PATCH] more config --- nixos/hosts/other/null/configuration.nix | 1 + nixos/hosts/other/null/home.nix | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/nixos/hosts/other/null/configuration.nix b/nixos/hosts/other/null/configuration.nix index a1d3e4c..cefe524 100644 --- a/nixos/hosts/other/null/configuration.nix +++ b/nixos/hosts/other/null/configuration.nix @@ -97,6 +97,7 @@ in }; environment.systemPackages = with pkgs; [ + gnome.gnome-tweaks pciutils nvidia-offload vim diff --git a/nixos/hosts/other/null/home.nix b/nixos/hosts/other/null/home.nix index c5c71d1..0d3f71f 100644 --- a/nixos/hosts/other/null/home.nix +++ b/nixos/hosts/other/null/home.nix @@ -3,9 +3,18 @@ home.homeDirectory = "/home/victor"; home.stateVersion = "22.05"; + home.packages = with pkgs; [ + arc-theme + discord + ]; + programs.home-manager.enable = true; programs.firefox = { enable = true; package = pkgs.firefox-devedition-bin; }; + programs.vscode = { + enable = true; + package = pkgs.vscode.fhs; + }; }