Add common CLI utilities I want everywhere
This commit is contained in:
parent
019df6a883
commit
82ee674db4
2 changed files with 12 additions and 0 deletions
11
common/utilities.nix
Normal file
11
common/utilities.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# CLI utilities I get frustrated if I'm missing
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
git
|
||||||
|
inetutils
|
||||||
|
parted
|
||||||
|
wget
|
||||||
|
];
|
||||||
|
}
|
1
hive.nix
1
hive.nix
|
@ -11,6 +11,7 @@ in {
|
||||||
imports = [
|
imports = [
|
||||||
(import "${sources.home-manager}/nixos")
|
(import "${sources.home-manager}/nixos")
|
||||||
./pinning.nix
|
./pinning.nix
|
||||||
|
./common/utilities.nix
|
||||||
./users/qenya.nix
|
./users/qenya.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue