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