dotfiles/modules/common.nix
Noah Masur 417623965e refactor arguments to options
also change theme to colorscheme
2022-05-05 23:02:01 -04:00

11 lines
244 B
Nix

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