2022-01-14 09:26:37 +00:00
|
|
|
{ pkgs, ... }: {
|
2022-01-14 09:19:01 +00:00
|
|
|
imports = [
|
|
|
|
./zfs.nix
|
2022-01-14 10:21:55 +00:00
|
|
|
./users/darkkirb.nix
|
2022-01-14 09:19:01 +00:00
|
|
|
];
|
2022-01-14 09:26:37 +00:00
|
|
|
nix = {
|
|
|
|
package = pkgs.nixUnstable; # or versioned attributes like nix_2_4
|
|
|
|
extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
};
|
2022-01-14 10:21:55 +00:00
|
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.git ];
|
2022-01-14 10:30:44 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [ 22 ];
|
2022-01-14 09:19:01 +00:00
|
|
|
}
|