Skip to content

Commit

Permalink
pull httpie from stable
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderio committed Jul 23, 2024
1 parent eeda149 commit aa81546
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 15 deletions.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
nixos-stable.url = "github:NixOS/nixpkgs/nixos-24.05-small";
nixos-small.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nixos-hardware.url = "github:NixOS/nixos-hardware";
flake-parts.url = "github:hercules-ci/flake-parts";
Expand Down
34 changes: 19 additions & 15 deletions home/shell/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
let
stablePkgs = import inputs.nixos-stable { inherit (pkgs) system; };
in
{
imports = [
./fish.nix
./git.nix
];

home.packages = with pkgs; [
nushell
ripgrep
fd
htop
file
unzip
httpie
nix-your-shell
comma
cachix
nix-output-monitor
gh
];
home.packages =
(with pkgs; [
nushell
ripgrep
fd
htop
file
unzip
nix-your-shell
comma
cachix
nix-output-monitor
gh
])
++ [ stablePkgs.httpie ];

home.sessionVariables = {
PAGER = "less";
Expand Down

0 comments on commit aa81546

Please sign in to comment.