1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

chore: remove overlays for now

This commit is contained in:
oddlama 2023-03-29 16:16:40 +02:00
parent ba0d5f2f5d
commit aa2a660c61
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
8 changed files with 79 additions and 64 deletions

View file

@ -18,6 +18,12 @@
nixos-hardware.url = "github:NixOS/nixos-hardware";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
microvm = {
url = "github:astro/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
@ -56,7 +62,6 @@
hosts = import ./nix/hosts.nix inputs;
colmena = import ./nix/colmena.nix inputs;
overlays = import ./nix/overlay.nix inputs;
homeConfigurations = import ./nix/home-manager.nix inputs;
inherit ((colmena.lib.makeHive self.colmena).introspect (x: x)) nodes;
@ -64,9 +69,6 @@
// flake-utils.lib.eachDefaultSystem (system: rec {
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
];
config.allowUnfree = true;
};