Skip to content

Commit

Permalink
nix: Move nix configuration out of assets directory
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed May 7, 2024
1 parent 3182cd8 commit e391946
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
};
};

modules = [ ./assets/nix/hosts/desktop/configuration.nix ];
modules = [ ./nix/hosts/desktop/configuration.nix ];
};

nixosConfigurations.mini = nixpkgs.lib.nixosSystem rec {
Expand All @@ -80,15 +80,15 @@
inherit sub;
};

modules = [ ./assets/nix/hosts/mini/configuration.nix ];
modules = [ ./nix/hosts/mini/configuration.nix ];
};

darwinConfigurations."babbel" = nix-darwin.lib.darwinSystem {
specialArgs = {
inherit self;
};

modules = [ ./assets/nix/hosts/babbel/configuration.nix ];
modules = [ ./nix/hosts/babbel/configuration.nix ];
};

devShells = nixpkgs.lib.genAttrs (import systems) (system:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e391946

Please sign in to comment.