hyprland yeet

This commit is contained in:
tristan 2023-04-08 16:32:44 +01:00
parent 1a500b92dc
commit 218fbf0993
3 changed files with 181 additions and 14 deletions

View file

@ -5,9 +5,10 @@
nixpkgs.url = "nixpkgs/nixos-22.11";
home-manager.url = "github:nix-community/home-manager/release-22.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, home-manager, hyprland, ... }:
let
system = "x86_64-linux";
@ -23,6 +24,8 @@
inherit system;
modules = [
hyprland.nixosModules.default
{programs.hyprland.enable = true;}
./system/configuration.nix
];
};