{ config, pkgs, inputs, lib, nixpkgs-nixos-unstable-and-unfree, ... }: { environment.systemPackages = with pkgs; [vim nixfmt]; imports = [ ../../git ../../helix ../../mercurial ../../vim ../../zsh ]; services.nix-daemon.enable = true; nix.settings.experimental-features = "nix-command flakes"; programs.zsh.enable = true; # default shell on catalina system.stateVersion = 4; # The platform the configuration will be used on. nixpkgs.hostPlatform = "aarch64-darwin"; homebrew.enable = true; homebrew.casks = ["firefox"]; home-manager.users.cyryl = {...}: { imports = [ ../../home-manager/programs/kitty.nix ]; home.packages = with pkgs; [awscli kubectl cargo-update]; programs = { }; }; }