mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
11 lines
231 B
Nix
11 lines
231 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
||
|
|
||
|
home-manager.useGlobalPkgs = true;
|
||
|
home-manager.useUserPackages = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [ git vim wget curl ];
|
||
|
|
||
|
}
|