Remove qois repo

This commit is contained in:
Fabian Hauser 2023-11-29 10:31:29 +01:00
parent 46da102e95
commit 84037c73b8
4 changed files with 2 additions and 38 deletions

View file

@ -9,12 +9,6 @@
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
# Private Deps
qois-infrastructure = {
url = "git+file:///etc/nixos/qois-infrastructure";
inputs.nixpkgs-nixos-2211.follows = "nixpkgs-stable";
inputs.nixpkgs-nixos-unstable.follows = "nixpkgs-unstable";
};
threema.url = "git+file:///etc/nixos/defaults/threema";
threema.inputs.nixpkgs-unstable.follows = "nixpkgs-unstable";
fcc-unlock = {
@ -25,14 +19,14 @@
};
outputs = { self, nixpkgs-unstable, nixpkgs-stable, home-manager
, qois-infrastructure, nixos-hardware, threema, fcc-unlock, ... }@inputs:
, nixos-hardware, threema, fcc-unlock, ... }@inputs:
let
system = "x86_64-linux";
pkgsUnstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true; # For vscode
};
hosts = [ "speer" "hummelberg" "ochsenchopf" "bachtel" ];
hosts = [ "speer" "hummelberg" "ochsenchopf" ];
in {
checks.${system}.formatCheck = let pkgs = pkgsUnstable;
in pkgs.runCommand "nixfmt-check" { } ''
@ -66,7 +60,6 @@
hardwareModules = nixos-hardware.nixosModules;
};
modules = [
qois-infrastructure.nixosModules.default
home-manager.nixosModules.home-manager
./host/${host}/default.nix
] ++ (if host == "bachtel" then [ ] else [ home-manager-config ]);