forked from M-Labs/nix-scripts
nixops: install mode dev tools on desktop
This commit is contained in:
parent
bd33e26a40
commit
d05caf3468
|
@ -3,6 +3,7 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
m-labs = import (fetchTarball https://nixbld.m-labs.hk/channel/custom/artiq/full/artiq-full/nixexprs.tar.xz) { inherit pkgs; };
|
m-labs = import (fetchTarball https://nixbld.m-labs.hk/channel/custom/artiq/full/artiq-full/nixexprs.tar.xz) { inherit pkgs; };
|
||||||
|
pkgs-unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
deployment.targetHost = host;
|
deployment.targetHost = host;
|
||||||
|
@ -28,6 +29,12 @@ in
|
||||||
gnome3.gnome-tweaks
|
gnome3.gnome-tweaks
|
||||||
jq sublime3 rink qemu_kvm
|
jq sublime3 rink qemu_kvm
|
||||||
tmux xc3sprog m-labs.openocd screen gdb minicom picocom tigervnc
|
tmux xc3sprog m-labs.openocd screen gdb minicom picocom tigervnc
|
||||||
|
emacs bat ripgrep
|
||||||
|
(pkgs-unstable.vscode-with-extensions.override {
|
||||||
|
vscodeExtensions = [
|
||||||
|
pkgs-unstable.vscode-extensions.matklad.rust-analyzer
|
||||||
|
];
|
||||||
|
})
|
||||||
(import ./fish-nix-shell)
|
(import ./fish-nix-shell)
|
||||||
];
|
];
|
||||||
programs.wireshark.enable = true;
|
programs.wireshark.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue