add hyprland init

This commit is contained in:
2023-08-05 14:06:29 +02:00
parent a020c863f9
commit 4a62dec178
10 changed files with 142 additions and 8 deletions

View File

@ -3,6 +3,7 @@
./boot.nix
./home-manager.nix
./locale.nix
./hyprland.nix
./networking.nix
./nix.nix
./packages.nix

View File

@ -1,5 +1,7 @@
{ pkgs, ... }: {
programs.hyprland.enable = true;
{ inputs, pkgs, ... }: {
programs.hyprland = {
enable = true;
};
services.xserver = {
enable = true;

View File

@ -1,5 +1,7 @@
{
nix.settings = {
experimental-features = "nix-command flakes";
experimental-features = "nix-command flakes"; # enable flakes
substituters = [ "https://hyprland.cachix.org" ]; # pre compiled hyprland packages
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
};
}