switch to hyprland from git

This commit is contained in:
Aly Raffauf 2024-04-20 17:50:52 -04:00
parent cd5dbb73bf
commit c403c36d83
2 changed files with 4 additions and 2 deletions

View file

@ -44,12 +44,12 @@
}: {
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./aly.nix];
modules = [hyprland.homeManagerModules.default ./aly.nix];
};
homeConfigurations.dustin = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./dustin.nix];
modules = [hyprland.homeManagerModules.default ./dustin.nix];
};
nixosConfigurations = {

View file

@ -2,6 +2,7 @@
pkgs,
lib,
config,
inputs,
...
}: {
imports = [./aly ./dustin];
@ -9,5 +10,6 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = [inputs.hyprland.homeManagerModules.default];
};
}