mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
Compare commits
2 commits
3c3dbc4e21
...
2965808631
Author | SHA1 | Date | |
---|---|---|---|
2965808631 | |||
59125e12ac |
3 changed files with 16 additions and 0 deletions
|
@ -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
10
home/doc.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
];
|
||||
|
||||
# packages
|
||||
home.packages = with pkgs; [
|
||||
|
||||
];
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue