rename default.nix to default-options

This commit is contained in:
Sakooooo 2023-08-06 08:52:27 +03:00
parent 5d8c162373
commit f2e43bb6ad
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 2 additions and 2 deletions

View file

@ -43,14 +43,14 @@
sakotop = nixpkgs.lib.nixosSystem { sakotop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
./default.nix ./default-options.nix
./hosts/sakotop/configuration.nix ./hosts/sakotop/configuration.nix
]; ];
}; };
sakopc = nixpkgs.lib.nixosSystem { sakopc = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
./default.nix ./default-options.nix
./hosts/sakopc/configuration.nix ./hosts/sakopc/configuration.nix
]; ];
}; };