[nix] Adds output for development feature
This commit is contained in:
@@ -27,9 +27,7 @@
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs, ... }@inputs:
|
||||
{
|
||||
outputs = { self, nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations = {
|
||||
drew-desktop = (import ./system/hosts/drew-desktop) {
|
||||
inherit inputs;
|
||||
@@ -49,5 +47,8 @@
|
||||
inherit nixpkgs;
|
||||
};
|
||||
};
|
||||
features = {
|
||||
development = (import ./home-manager/features/development/development.nix);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -13,7 +13,31 @@
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
direnv
|
||||
# System
|
||||
htop
|
||||
btop
|
||||
neofetch
|
||||
killall
|
||||
|
||||
# Files
|
||||
zip
|
||||
xz
|
||||
unzip
|
||||
p7zip
|
||||
file
|
||||
tree
|
||||
ranger
|
||||
|
||||
# Networking
|
||||
dnsutils
|
||||
inetutils
|
||||
socat
|
||||
httpie
|
||||
|
||||
# Other
|
||||
jq
|
||||
|
||||
# Dev helpers
|
||||
direnv
|
||||
];
|
||||
}
|
||||
|
||||
@@ -7,29 +7,6 @@
|
||||
# a system or working with other shell commands. Packages more specific to
|
||||
# development can be in development configs.
|
||||
home.packages = with pkgs; [
|
||||
# System
|
||||
htop
|
||||
btop
|
||||
neofetch
|
||||
killall
|
||||
|
||||
# Files
|
||||
zip
|
||||
xz
|
||||
unzip
|
||||
p7zip
|
||||
file
|
||||
tree
|
||||
ranger
|
||||
|
||||
# Networking
|
||||
dnsutils
|
||||
inetutils
|
||||
socat
|
||||
httpie
|
||||
|
||||
# Other
|
||||
jq
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
|
||||
Reference in New Issue
Block a user