mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:53:55 -05:00
cleaned up homeConfigurations in flake
This commit is contained in:
parent
0a6c47e084
commit
6d70c74871
17
flake.nix
17
flake.nix
|
@ -42,14 +42,15 @@
|
||||||
hyprland,
|
hyprland,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations = {
|
||||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
aly = home-manager.lib.homeManagerConfiguration {
|
||||||
modules = [hyprland.homeManagerModules.default ./aly.nix];
|
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||||
};
|
modules = [hyprland.homeManagerModules.default ./aly.nix];
|
||||||
|
};
|
||||||
homeConfigurations.dustin = home-manager.lib.homeManagerConfiguration {
|
dustin = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||||
modules = [hyprland.homeManagerModules.default ./dustin.nix];
|
modules = [hyprland.homeManagerModules.default ./dustin.nix];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
Loading…
Reference in a new issue