summaryrefslogtreecommitdiff
path: root/hosts/glados/packages.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-30 11:34:47 -0500
committerseth <[email protected]>2023-01-30 11:34:47 -0500
commit4dab2100d146c3041a2a1f6d8a2722233fc386fb (patch)
tree209fa7e1a8dd68c41cc175839e4abadf6b4323c4 /hosts/glados/packages.nix
parent4bb04d98461add1df39db556f5dd5de4426e6a97 (diff)
remove unneeded packages + refactor more
Diffstat (limited to 'hosts/glados/packages.nix')
-rw-r--r--hosts/glados/packages.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/hosts/glados/packages.nix b/hosts/glados/packages.nix
deleted file mode 100644
index 7066911..0000000
--- a/hosts/glados/packages.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{pkgs, ...}: {
- environment.systemPackages = with pkgs; [
- git
- gnupg1
- neofetch
- nixos-option
- pinentry-curses
- python310
- vim
- ];
-
- programs = {
- gnupg = {
- agent = {
- enable = true;
- pinentryFlavor = "curses";
- };
- };
- };
-}