nix-dotfiles/hosts/goopnet-interface/default.nix
2024-03-28 01:38:40 -07:00

28 lines
413 B
Nix
Executable file

{ 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;
}