Add anime-launcher because it needs to be installed at the system level to interact with /etc/hosts configuration. Remove commented code as it wasn't being used to overlay packages, and can be easily researched later
33 lines
803 B
Nix
33 lines
803 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
aagl = {
|
|
url = "github:ezKEa/aagl-gtk-on-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, hyprland, aagl, ... }@inputs:
|
|
{
|
|
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
hyprland.nixosModules.default
|
|
{ programs.hyprland.enable = true; }
|
|
./systems/shared
|
|
./systems/onizuka
|
|
];
|
|
};
|
|
|
|
nixosConfigurations.jibril = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
hyprland.nixosModules.default
|
|
{ programs.hyprland.enable = true; }
|
|
./systems/shared
|
|
./systems/jibril
|
|
];
|
|
};
|
|
};
|
|
}
|