From ca07a6a3e97eb547f935706479c043ffd0cd0572 Mon Sep 17 00:00:00 2001 From: Peritia Date: Mon, 11 Aug 2025 15:58:06 +0200 Subject: [PATCH] make it importable --- flake.nix | 42 ++++-------------------------------------- 1 file changed, 4 insertions(+), 38 deletions(-) diff --git a/flake.nix b/flake.nix index 2950a72..95642d2 100644 --- a/flake.nix +++ b/flake.nix @@ -1,46 +1,12 @@ { - description = "NixOS-95"; + description = "NixOS-95: To Style your NixOS to look like Windows95"; - ################################################################ - # 🔗 Inputs - ################################################################ inputs = { - # Core NixOS packages - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - - # Home Manager - home-manager.url = "github:nix-community/home-manager"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; - + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; }; - ################################################################ - # 🚀 Outputs - ################################################################ - outputs = inputs @ { - self, - nixpkgs, - home-manager, - ... - }: { - + outputs = { self, nixpkgs, ... }: { nixosModules.nixos95 = import ./nixos95; - - nixosConfigurations = { - ############################################################ - # 💻 Default Host - ############################################################ - default = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = { - inherit inputs self; - host = "default"; - }; - modules = [ - ./Configurations/Hosts/Default/configuration.nix - ]; - }; - - }; }; } +