diff --git a/README.md b/README.md index b529637..229e5ab 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,7 @@ If you're me, and the machine you're installing on has a configuration, it's as git clone forgejo@cirno.with.al:shadows_withal/nix-config.git ~/nix-config cd ~/nix-config nix-shell -# for nixos: -sudo nixos-rebuild switch --flake . -# for home-manager -home-manager switch --flake .#lu@HOSTNAME +nh os switch ``` Feel free to brutalize as much of this config as you want for your own purposes. diff --git a/flake.nix b/flake.nix index 6032773..c868b01 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ } @ inputs: let inherit (self) outputs; - lib = nixpkgs.lib // home-manager.lib; + lib = nixpkgs.lib; systems = [ "x86_64-linux" "aarch64-darwin" @@ -53,6 +53,11 @@ specialArgs = { inherit inputs outputs; }; modules = [ ./nixos/enoko/configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.extraSpecialArgs = { inherit inputs outputs; }; + home-manager.users.lu = import ./home/enoko.nix; + } ]; }; @@ -60,24 +65,11 @@ specialArgs = { inherit inputs outputs; }; modules = [ ./nixos/yukari/configuration.nix - ]; - }; - }; - - homeConfigurations = { - "lu@yukari" = lib.homeManagerConfiguration { - pkgs = pkgsFor.x86_64-linux; - extraSpecialArgs = { inherit inputs outputs; }; - modules = [ - ./home/yukari.nix - ]; - }; - - "lu@enoko" = lib.homeManagerConfiguration { - pkgs = pkgsFor.x86_64-linux; - extraSpecialArgs = { inherit inputs outputs; }; - modules = [ - ./home/enoko.nix + home-manager.nixosModules.home-manager + { + home-manager.extraSpecialArgs = { inherit inputs outputs; }; + home-manager.users.lu = import ./home/yukari.nix; + } ]; }; }; diff --git a/shell.nix b/shell.nix index 717bccc..c32a8bd 100644 --- a/shell.nix +++ b/shell.nix @@ -14,6 +14,7 @@ nativeBuildInputs = with pkgs; [ home-manager git + nh ]; }; }