2025-09-13 02:38:36 -04:00
|
|
|
{
|
|
|
|
|
description = "System Configuration Flake";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nur = {
|
|
|
|
|
url = "github:nix-community/NUR";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nvf = {
|
|
|
|
|
url = "github:notashelf/nvf";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
plasma-manager = {
|
|
|
|
|
url = "github:nix-community/plasma-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
inputs.home-manager.follows = "home-manager";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2025-10-14 15:15:09 -04:00
|
|
|
outputs =
|
|
|
|
|
{ nixpkgs, ... }@inputs:
|
|
|
|
|
let
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
host = "demo";
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
nixosConfigurations.${host} = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
specialArgs = { inherit inputs host; };
|
|
|
|
|
modules = [
|
|
|
|
|
./modules/system
|
|
|
|
|
./hosts/${host}
|
|
|
|
|
];
|
|
|
|
|
};
|
2025-09-13 02:38:36 -04:00
|
|
|
};
|
|
|
|
|
}
|