This commit is contained in:
Reid 2024-03-28 01:38:40 -07:00
commit 132a109da8
15 changed files with 436 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
in {
imports = [
./hardware.nix
];
hm.home.packages = with pkgs; [
# archives
zip xz unzip p7zip
# utils
ripgrep jq
# nix
nix-output-monitor
# system
btop duf killall
# misc
file which tree
] ++ (with pkgs.my; [
# none yet
]);
modules = {
security.useDoas = false;
};
networking.networkmanager.enable = true;
}