[nix] Adds output for development feature

This commit is contained in:
Drew Haven
2025-03-12 13:41:47 -07:00
parent 06f2940147
commit 98d5307abd
3 changed files with 46 additions and 44 deletions

View File

@@ -27,27 +27,28 @@
};
};
outputs =
{ self, nixpkgs, ... }@inputs:
{
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
darwinConfigurations = {
DGVGYQLQP5 = (import ./system/hosts/tarro-mbp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
darwinConfigurations = {
DGVGYQLQP5 = (import ./system/hosts/tarro-mbp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
features = {
development = (import ./home-manager/features/development/development.nix);
};
};
}

View File

@@ -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
];
}

View File

@@ -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 = {