From d73aaa87bf037e5445c02edcb0b26aa6fa674458 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 9 Nov 2022 10:04:51 -0600 Subject: [PATCH] adding hyprland to kaladin --- README.org | 2 ++ flake.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.org b/README.org index d05272d..d920aaf 100644 --- a/README.org +++ b/README.org @@ -116,10 +116,12 @@ Both include the home-manager module. Primarily I chose that route so that I cou modules = [ ./system/kaladin/configuration.nix home-manager.nixosModules.home-manager + hyprland.nixosModules.default { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.chris = import ./user/home.nix; + programs.hyprland.enable = true; } ]; }; diff --git a/flake.nix b/flake.nix index 8a7a194..03c2523 100644 --- a/flake.nix +++ b/flake.nix @@ -89,10 +89,12 @@ modules = [ ./system/kaladin/configuration.nix home-manager.nixosModules.home-manager + hyprland.nixosModules.default { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.chris = import ./user/home.nix; + programs.hyprland.enable = true; } ]; };