mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 06:33:56 -05:00
switch to hyprland from git
This commit is contained in:
parent
cd5dbb73bf
commit
c403c36d83
|
@ -44,12 +44,12 @@
|
||||||
}: {
|
}: {
|
||||||
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations.aly = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||||
modules = [./aly.nix];
|
modules = [hyprland.homeManagerModules.default ./aly.nix];
|
||||||
};
|
};
|
||||||
|
|
||||||
homeConfigurations.dustin = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations.dustin = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||||
modules = [./dustin.nix];
|
modules = [hyprland.homeManagerModules.default ./dustin.nix];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [./aly ./dustin];
|
imports = [./aly ./dustin];
|
||||||
|
@ -9,5 +10,6 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
sharedModules = [inputs.hyprland.homeManagerModules.default];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue