mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 03:33: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,
|
||||
...
|
||||
}: {
|
||||
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||
modules = [hyprland.homeManagerModules.default ./aly.nix];
|
||||
};
|
||||
|
||||
homeConfigurations.dustin = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||
modules = [hyprland.homeManagerModules.default ./dustin.nix];
|
||||
homeConfigurations = {
|
||||
aly = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||
modules = [hyprland.homeManagerModules.default ./aly.nix];
|
||||
};
|
||||
dustin = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||
modules = [hyprland.homeManagerModules.default ./dustin.nix];
|
||||
};
|
||||
};
|
||||
|
||||
nixosConfigurations = {
|
||||
|
|
Loading…
Reference in a new issue