Fix flake.nix and home/default.nix configurations
This commit is contained in:
63
flake.nix
63
flake.nix
@@ -27,34 +27,41 @@
|
||||
home-manager.users.panotaka = import ./home;
|
||||
}
|
||||
];
|
||||
};
|
||||
msi-rtx4090 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/msi-rtx4090
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = inputs;
|
||||
home-manager.users.panotaka = import ./home;
|
||||
}
|
||||
];
|
||||
}; */
|
||||
Equinox = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hosts/Equinox
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = inputs;
|
||||
home-manager.users.panotaka = import ./home;
|
||||
}
|
||||
];
|
||||
};
|
||||
};*/
|
||||
Equinox = nixpkgs.lib.nixosSystem
|
||||
{
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hosts/Equinox
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = inputs;
|
||||
|
||||
home-manager.users.panotaka =
|
||||
{
|
||||
imports = [
|
||||
./home
|
||||
./home/shell
|
||||
./home/desktop
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations.panotaka = home-manager.lib.homeManagerConfiguration
|
||||
{
|
||||
homeDirectory = "/home/panotaka";
|
||||
configuration = { pkgs, ... }: {
|
||||
imports = [
|
||||
./home
|
||||
./home/shell
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user