summaryrefslogtreecommitdiff
path: root/home-manager/modules/apps/default.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
commit1be972048dd58218cd689ecb5cac562eb398b751 (patch)
tree203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /home-manager/modules/apps/default.nix
parent3cd59d4670711e34a50adea912c3b0894883e490 (diff)
refreshed config
Diffstat (limited to '')
-rw-r--r--home-manager/modules/apps/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/home-manager/modules/apps/default.nix b/home-manager/modules/apps/default.nix
deleted file mode 100644
index e47ee81..0000000
--- a/home-manager/modules/apps/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{lib, pkgs, inputs, ...}:
-with lib;
-{
- imports = [
- ./nvim
- ./desktop
- ./zsh.nix
- ];
-
- # Stuff that is to be sorted to its appropriate files
- # If no appropriate category is found or thought of, put it in misc.nix
- home.packages = with pkgs; [
- htop
- btop
- nmap
- dig
- ripgrep
- unzip
- unrar
- xdg-user-dirs
- zsh
- cmake
- ( hiPrio gcc)
- gnumake
- clang
- rustup
- lm_sensors
- sshfs
- pkg-config
- ranger
- file
- inputs.iamb.packages."${pkgs.system}".default
- ];
-}