From f2e43bb6ad7ae4127c332c7a78562a92f563e0f6 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:52:27 +0300 Subject: [PATCH] rename default.nix to default-options --- default.nix => default-options.nix | 0 flake.nix | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename default.nix => default-options.nix (100%) diff --git a/default.nix b/default-options.nix similarity index 100% rename from default.nix rename to default-options.nix diff --git a/flake.nix b/flake.nix index 7892eead..04a9fd1e 100644 --- a/flake.nix +++ b/flake.nix @@ -43,14 +43,14 @@ sakotop = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; }; modules = [ - ./default.nix + ./default-options.nix ./hosts/sakotop/configuration.nix ]; }; sakopc = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; }; modules = [ - ./default.nix + ./default-options.nix ./hosts/sakopc/configuration.nix ]; };