nixos-config/config/default.nix

15 lines
321 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 09:19:01 +00:00
}