From 8ae385744fba2ab610207e0eb7722efa143a2a3e Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 20 Feb 2025 19:58:24 +0000 Subject: [PATCH 1/3] remove nixpkgs for home-manager --- ubuntu-home.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ubuntu-home.nix b/ubuntu-home.nix index 4d652c3..c0ddbb5 100644 --- a/ubuntu-home.nix +++ b/ubuntu-home.nix @@ -6,10 +6,6 @@ home.homeDirectory = "/home/aaronh"; home.stateVersion = "24.05"; - nixpkgs.config = { - allowUnfree = true; - }; - home.packages = with pkgs; [ bat bottom From d2152c6978fb95055577d653ee112661c3048179 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 20 Feb 2025 21:16:59 +0000 Subject: [PATCH 2/3] add new section for gh-dash --- ubuntu-home.nix | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/ubuntu-home.nix b/ubuntu-home.nix index c0ddbb5..d40b21f 100644 --- a/ubuntu-home.nix +++ b/ubuntu-home.nix @@ -10,24 +10,29 @@ bat bottom cargo + cyme + dua eza fastfetch fd freshfetch gcc gnumake - go - himalaya pkg-config rustc ]; programs.bash = { enable = true; + }; + + programs.nushell = { + enable = true; shellAliases = { - home-upgrade = "home-manager switch"; + cat = "bat"; + ls = "eza"; + lsusb = "cyme"; }; -# bashrcExtra = "eval `ssh-agent`"; }; programs.git = { @@ -62,6 +67,26 @@ programs.gh.enable = true; + programs.gh-dash = { + enable = true; + settings = { + prSections = [ + { + title = "My Pull Requests"; + filters = "is:open author:@me"; + } + { + title = "My Review Requests"; + filters = "is:open review-requested:@me"; + } + { + title = "Assigned PRs"; + filters = "is:open assignee:@me"; + } + ]; + }; + }; + programs.helix = { enable = true; settings = { From cc5f8deb49334760368da123299e1283677fd7ae Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 20 Feb 2025 21:17:16 +0000 Subject: [PATCH 3/3] Edit ubuntu-home.nix --- ubuntu-home.nix => standalone-home.nix | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ubuntu-home.nix => standalone-home.nix (100%) diff --git a/ubuntu-home.nix b/standalone-home.nix similarity index 100% rename from ubuntu-home.nix rename to standalone-home.nix