mirror of
https://github.com/sbrow/nix.git
synced 2026-02-27 21:31:45 -05:00
fix: Fixed an issue with the default template.
This commit is contained in:
@@ -14,9 +14,9 @@
|
||||
(system: {
|
||||
formatter = nixpkgs.legacyPackages.${system}.nixpkgs-fmt;
|
||||
}) // {
|
||||
nixosModules.default = { config, nixpkgs, ... }: {
|
||||
nixosModules.default = { config, pkgs, ... }: {
|
||||
config = {
|
||||
environment.systemPackages = with nixpkgs; [ git ];
|
||||
environment.systemPackages = with [ pkgs.git ];
|
||||
/* Your config here */
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user