nix check works!!

This commit is contained in:
2026-06-18 19:03:46 -05:00
parent 9c395bd12c
commit 6de2694495
9 changed files with 95 additions and 56 deletions
+12 -12
View File
@@ -19,21 +19,21 @@
{
nixosConfigurations = {
laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/laptop/configuration.nix
home-manager.nixosModules.default
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/laptop/configuration.nix
home-manager.nixosModules.default
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.river = import ./hosts/laptop/home.nix;
}
home-manager.users.river = import ./home;
}
];
];
};
};
}
};
}