nix-dotfiles/flake.nix
Julia Lange a5c524ed33 Add anime-launcher, remove commented code in flake
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
2024-03-17 16:14:40 -07:00

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
];
};
};
}