From c403c36d836a550db781ec4620a2c536d60fbd3d Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sat, 20 Apr 2024 17:50:52 -0400 Subject: [PATCH] switch to hyprland from git --- flake.nix | 4 ++-- nixosModules/user/default.nix | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1a0167ff..31dc9396 100644 --- a/flake.nix +++ b/flake.nix @@ -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 = { diff --git a/nixosModules/user/default.nix b/nixosModules/user/default.nix index 191aed48..684f5fa3 100644 --- a/nixosModules/user/default.nix +++ b/nixosModules/user/default.nix @@ -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]; }; }