From 3f1cff7068d012e5b9a56f9d61659be5172aa987 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 29 Mar 2020 12:51:12 -0400 Subject: [PATCH] lots of extra packages, misc home config --- home/home.nix | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/home/home.nix b/home/home.nix index 77499a32b..402456e8a 100644 --- a/home/home.nix +++ b/home/home.nix @@ -28,14 +28,29 @@ home.stateVersion = "19.09"; home.packages = with pkgs; [ - nix-prefetch-github + # Desktop stuff + arandr + firefox + chromium + xclip + xorg.xev + + # System utilities htop powertop - pass - gitAndTools.hub - shellcheck + usbutils + killall + + # Security gnupg + # Programming + jq + gitAndTools.hub + gitAndTools.tig + shellcheck + httpie + # Spotify...etc spotify playerctl @@ -43,6 +58,9 @@ # games crawl dwarf-fortress + + # Nix things + nix-prefetch-github ]; nixpkgs.config.allowUnfree = true; @@ -51,8 +69,13 @@ enable = true; userEmail = "root@gws.fyi"; userName = "Griffin Smith"; + extraConfig = { + github.user = "glittershark"; + }; }; + programs.password-store.enable = true; + services.redshift = { enable = true; provider = "geoclue2"; @@ -68,4 +91,16 @@ services.gpg-agent = { enable = true; }; + + xdg.mimeApps = { + enable = true; + defaultApplications = { + "text/html" = [ "firefox.desktop" ]; + }; + }; + }; + + services.gpg-agent = { + enable = true; + }; }