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

@ -3,11 +3,16 @@
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland = {
url = "github:hyprwm/Hyprland";
};
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, home-manager, hyprland, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
@ -20,7 +25,7 @@
in {
nixosConfigurations = {
zenix = mkConf "zenix" { inherit nixpkgs system user home-manager; };
FCS-Tristan-Nixbook = mkConf "work" { inherit nixpkgs system user home-manager; };
FCS-Tristan-Nixbook = mkConf "work" { inherit nixpkgs system user home-manager hyprland; };
};
};
}