Don't manage Doom config with Nix

This commit is contained in:
Elnu 2023-01-23 21:40:08 -08:00
parent 838fb30d39
commit e8323e1fdc
3 changed files with 10 additions and 10 deletions

View file

@ -12,10 +12,11 @@
outputs = inputs@{ self, nixpkgs, home-manager }:
let
user = "elnu";
configDir = "nix-config";
in {
nixosConfigurations = import ./hosts {
inherit (nixpkgs) lib;
inherit inputs nixpkgs home-manager user;
inherit inputs nixpkgs home-manager user configDir;
};
};
}