mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
11 lines
244 B
Nix
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 ];
|
|
|
|
}
|