mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-01-08 04:47:18 +01:00
shell.nix: add niv, colmena
This commit is contained in:
parent
27b26d8dcc
commit
14ece1180e
@ -63,8 +63,6 @@
|
|||||||
description = "Yoda";
|
description = "Yoda";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# Nix dependency management.
|
|
||||||
niv
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
zenith # Terminal resource monitor / task manager
|
zenith # Terminal resource monitor / task manager
|
||||||
btop # Terminal resource monitor / task manager
|
btop # Terminal resource monitor / task manager
|
||||||
htop # Terminal resource monitor / task manager
|
htop # Terminal resource monitor / task manager
|
||||||
|
niv # NixOS dependency management
|
||||||
colmena # NixOS config deployment
|
colmena # NixOS config deployment
|
||||||
|
|
||||||
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
# nativeBuildInputs is usually what you want -- tools you need to run
|
# nativeBuildInputs is usually what you want -- tools you need to run
|
||||||
nativeBuildInputs = with pkgs.buildPackages; [ ];
|
nativeBuildInputs = with pkgs.buildPackages; [
|
||||||
|
niv
|
||||||
|
colmena
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user