Compare commits

...

2 commits

Author SHA1 Message Date
2965808631 add host: doc 2024-01-25 16:58:06 -06:00
59125e12ac cli: add dos2unix 2024-01-25 11:55:40 -06:00
3 changed files with 16 additions and 0 deletions

View file

@ -83,6 +83,11 @@
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@doc" = lib.homeManagerConfiguration {
modules = [ ./home/doc.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
};
};
}

10
home/doc.nix Normal file
View file

@ -0,0 +1,10 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
];
# packages
home.packages = with pkgs; [
];
}

View file

@ -14,6 +14,7 @@
babelfish # Lets fish speak bash
bottom # Prettier top
dig # DNS lookup
dos2unix # Convert DOS line endings to UNIX
gh # Github CLI
httpie # Better curl
jq # JSON pretty printer and manipulator