Trim down dev tools on nix-on-droid

This commit is contained in:
Nathan McCarty 2022-11-17 16:46:37 -05:00
parent 98340a0ecf
commit 5d2c4aa0b8
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 13 additions and 1 deletions

View File

@ -1,5 +1,17 @@
{ config, lib, pkgs, ... }:
{
nathan = { config = { isDesktop = true; }; };
nathan = {
programs = {
util = { git = { gpgSign = false; }; };
devel = {
idris2 = false;
haskell = false;
js = false;
raku = false;
python = false;
};
};
config = { isDesktop = true; };
};
}