meta: remove home-manager

This commit is contained in:
Max Headroom 2022-07-31 21:13:52 +02:00
parent 37401a5e83
commit 17e84804a7
2 changed files with 0 additions and 12 deletions

View file

@ -14,15 +14,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
home-manager = {
url = "github:nix-community/home-manager/master";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "repin-flake-compat";
utils.follows = "repin-flake-utils";
};
};
deploy-rs = { deploy-rs = {
url = "gitlab:max/deploy-rs?host=git.privatevoid.net"; url = "gitlab:max/deploy-rs?host=git.privatevoid.net";
inputs = { inputs = {

View file

@ -5,19 +5,16 @@ with inputs;
nix.nixPath = [ nix.nixPath = [
"repl=/etc/nixos/flake-channels/system/repl.nix" "repl=/etc/nixos/flake-channels/system/repl.nix"
"nixpkgs=/etc/nixos/flake-channels/nixpkgs" "nixpkgs=/etc/nixos/flake-channels/nixpkgs"
"home-manager=/etc/nixos/flake-channels/home-manager"
]; ];
nix.registry = { nix.registry = {
system.flake = self; system.flake = self;
nixpkgs.flake = nixpkgs; nixpkgs.flake = nixpkgs;
default.flake = nixpkgs; default.flake = nixpkgs;
home-manager.flake = home-manager;
}; };
environment.etc = { environment.etc = {
"nixos/flake-channels/system".source = inputs.self; "nixos/flake-channels/system".source = inputs.self;
"nixos/flake-channels/nixpkgs".source = nixpkgs; "nixos/flake-channels/nixpkgs".source = nixpkgs;
"nixos/flake-channels/home-manager".source = home-manager;
}; };
} }