summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-08-31 00:37:17 +0200
committerDevin Finlinson <devin.finlinson@pm.me>2023-08-31 00:37:17 +0200
commit922dbb8f8cbc48ccc23f4dfddb232102d3e9a258 (patch)
tree92908ec57cd40abae6075a44cfec1e4feca94406 /flake.nix
parent587d3d8f126b9d6b67b5e0ca3d660775587de9fb (diff)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index a4112d0..c64a2f5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,17 +9,19 @@
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
+
+ hyprland.url = "github:hyprwm/Hyprland";
};
- outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }: {
+ outputs = { nixpkgs, nixpkgs-unstable, home-manager, hyprland, ... }: {
nixosConfigurations = {
- zenbook = nixpkgs.lib.nixosSystem {
+ nixos-zenbook = nixpkgs.lib.nixosSystem {
modules = [
./machines/zenbook/configuration.nix
- ./hardware-configuation.nix
+ ./machines/zenbook/hardware-configuation.nix
# Default users
./modules/user-profiles/defin.nix
@@ -34,10 +36,12 @@
# arguments to home.nix
}
+ hyprland.homeManagerModules.default {wayland.windowManager.hyprland.enable = true;}
+ ./modules/hyprland.nix
+
./modules/bluetooth.nix
./modules/environment.nix
./modules/kde-connect.nix
- ./modules/hyprland.nix
./modules/nix-common.nix
./modules/services.nix
./modules/sway.nix