use upstream hyprland and greetd

This commit is contained in:
Tristan 2023-04-17 11:21:33 +01:00
parent 5a782b0056
commit 01331f24da
10 changed files with 310 additions and 319 deletions

View file

@ -1,10 +1,16 @@
name: { nixpkgs, home-manager, system, user, ... }:
name: { nixpkgs, home-manager, system, user, hyprland, ... }:
nixpkgs.lib.nixosSystem rec {
inherit system;
modules = [
{
nix.settings = {
substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
};
}
../system/global/system.nix
../system/${name}/system.nix
../system/${name}/hardware.nix
@ -14,6 +20,7 @@ nixpkgs.lib.nixosSystem rec {
home-manager.users.${user}.imports = [
../system/global/home.nix
../system/${name}/home.nix
hyprland.homeManagerModules.default
];
}
];