init
This commit is contained in:
commit
132a109da8
15 changed files with 436 additions and 0 deletions
28
hosts/goopnet-interface/default.nix
Executable file
28
hosts/goopnet-interface/default.nix
Executable 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue