Remove etaxes

This commit is contained in:
Fabian Hauser 2022-05-02 16:34:19 +02:00
parent a0b7f0a9a4
commit 4976fd949d
3 changed files with 13 additions and 41 deletions

View file

@ -8,8 +8,6 @@
# Packages
home-manager.url = "github:nix-community/home-manager/release-21.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
fabianhauser-etaxes-sg.url = "github:fabianhauser/etaxes-sg-nix";
fabianhauser-etaxes-sg.inputs.nixpkgs.follows = "nixpkgs-stable";
# Private Deps
qois-infrastructure = {
@ -23,8 +21,7 @@
};
outputs = { self, nixpkgs-unstable, nixpkgs-stable, home-manager
, qois-infrastructure, fabianhauser-etaxes-sg, nixos-hardware, threema, ...
}@inputs:
, qois-infrastructure, nixos-hardware, threema, ... }@inputs:
let
system = "x86_64-linux";
pkgsUnstable = import nixpkgs-unstable {
@ -53,9 +50,7 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = sharedSpecialArgs // {
pkgsEtaxesSg = fabianhauser-etaxes-sg.packages.${system};
};
extraSpecialArgs = sharedSpecialArgs;
users.fhauser = import ./home/fhauser/default.nix;
};
};