summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix25
1 files changed, 9 insertions, 16 deletions
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-<version>"`
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; });
};
};
}