diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-05-20 15:26:33 -0500 |
|---|---|---|
| committer | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-05-20 15:26:33 -0500 |
| commit | 9c99fae0b89d131997c9f713ff364040221b7c99 (patch) | |
| tree | 6e6ac1447abeaac41e85b2d1d83b843578ad2f9c /flake.nix | |
| parent | d96a17e76af7415296bf2f0b33bc8f233e9d5b5a (diff) | |
updates
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 25 |
1 files changed, 9 insertions, 16 deletions
@@ -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; }); }; }; } |
