Reformat flake.nix for cleaner management

This commit is contained in:
Julia Lange 2024-03-22 02:54:25 -07:00
parent 408461407e
commit af12ea65e3
4 changed files with 98 additions and 32 deletions

View file

@ -1,34 +1,26 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-23.11";
hyprland.url = "github:hyprwm/Hyprland";
aagl = {
url = "github:ezKEa/aagl-gtk-on-nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixpkgs-stable";
};
};
outputs = { self, nixpkgs, hyprland, aagl, ... }@inputs:
{
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
outputs = { self, nixpkgs, hyprland, aagl, sops-nix, ... }@inputs:
let
defaultConfig = extraModules: nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
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
];
] ++ extraModules;
};
in
{
nixosConfigurations.onizuka = defaultConfig [ ./systems/onizuka ];
nixosConfigurations.jibril = defaultConfig [ ./systems/jibril ];
};
}