shell.nix: add niv, colmena

This commit is contained in:
Daniel Langbein 2025-01-03 15:46:38 +01:00
parent 27b26d8dcc
commit 14ece1180e
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
3 changed files with 5 additions and 3 deletions

View File

@ -63,8 +63,6 @@
description = "Yoda";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
# Nix dependency management.
niv
];
};

View File

@ -5,6 +5,7 @@
zenith # Terminal resource monitor / task manager
btop # Terminal resource monitor / task manager
htop # Terminal resource monitor / task manager
niv # NixOS dependency management
colmena # NixOS config deployment
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?

View File

@ -1,5 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ ];
nativeBuildInputs = with pkgs.buildPackages; [
niv
colmena
];
}