nixos-config/config/default.nix

16 lines
369 B
Nix
Raw Normal View History

2022-01-14 09:26:37 +00:00
{ pkgs, ... }: {
2022-01-14 09:19:01 +00:00
imports = [
./zfs.nix
./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
'';
};
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
}