From 9c99fae0b89d131997c9f713ff364040221b7c99 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Wed, 20 May 2026 15:26:33 -0500 Subject: updates --- flake.nix | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index a538e15..3d89e8f 100644 --- a/flake.nix +++ b/flake.nix @@ -14,32 +14,25 @@ # If using a stable channel you can use `url = "github:nix-community/nixvim/nixos-"` inputs.nixpkgs.follows = "nixpkgs"; }; - - spicetify-nix = { - url = "github:Gerg-L/spicetify-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { nixpkgs, home-manager, nixvim, spicetify-nix, ... }@inputs: + outputs = { nixpkgs, home-manager, nixvim, ... }@inputs: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; - in - { + in { nixosConfigurations.ozpv = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; - modules = [ + specialArgs = { inherit inputs; }; + modules = [ ./configuration.nix - home-manager.nixosModules.home-manager { - home-manager.extraSpecialArgs = { inherit inputs; }; - } + home-manager.nixosModules.home-manager + { home-manager.extraSpecialArgs = { inherit inputs; }; } ]; }; + devShells.x86_64-linux = { - default = (import ./shells/all.nix {inherit pkgs;}); - haemolacriaa = (import ./shells/haemolacriaa.nix {inherit pkgs;}); - csci = (import ./shells/csci.nix {inherit pkgs;}); + default = (import ./shells/all.nix { inherit pkgs; }); + haemolacriaa = (import ./shells/haemolacriaa.nix { inherit pkgs; }); }; }; } -- cgit v1.2.3