-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
flake.nix
41 lines (38 loc) · 937 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
description = "KooL's NixOS-Hyprland";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
#wallust.url = "git+https://codeberg.org/explosion-mental/wallust?ref=dev";
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; # hyprland development
distro-grub-themes.url = "github:AdisonCavani/distro-grub-themes";
};
outputs =
inputs@{ self,nixpkgs, ... }:
let
system = "x86_64-linux";
host = "NixOS-Hyprland";
username = "alice";
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
};
in
{
nixosConfigurations = {
"${host}" = nixpkgs.lib.nixosSystem rec {
specialArgs = {
inherit system;
inherit inputs;
inherit username;
inherit host;
};
modules = [
./hosts/${host}/config.nix
inputs.distro-grub-themes.nixosModules.${system}.default
];
};
};
};
}