fixed flake format

This commit is contained in:
2025-01-17 00:40:41 -08:00
parent 53ceea37d7
commit c26161a21f

View File

@@ -17,14 +17,17 @@
outputs = { self, nixpkgs, home-manager, nixvim, ... }@inputs: {
homeManagerConfigurations = {
rogueking = home-manager.lib.homeManagerConfiguration {
configuration = { pkgs, lib, ... }: {
imports = [ ./home-manager/home.nix];
};
system = "x86_64-linux";
homeDirectory = "/home/rogueking";
pkgs = nixpkgs.legacyPackages.$x86_64-linux;
modules = [
./home-manager/home.nix
{
home = {
username = "rogueking";
homeDirectory = "/home/rogueking";
stateVersion = "24.11";
};
}
];
};
};
}