dotfiles/hosts/common.nix

11 lines
244 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }: {
2022-05-02 03:39:50 +00:00
nix.extraOptions = "experimental-features = nix-command flakes";
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
environment.systemPackages = with pkgs; [ git vim wget curl ];
}