forked from mirrors_public/oddlama_nix-config
feat: disable some more unnecessary stuff for the minimal image
This commit is contained in:
parent
73d7a42879
commit
8fb6b63e6f
4 changed files with 23 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
lib,
|
||||
minimal,
|
||||
...
|
||||
}:
|
||||
lib.optionalAttrs (!minimal) {
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
configFile.source = ./config.nu;
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
minimal,
|
||||
...
|
||||
}:
|
||||
lib.optionalAttrs (!minimal) {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
bandwhich
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue