48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
# Welcome to my nix config! I'm just getting started with flakes, so please
|
|
# forgive the mess.
|
|
|
|
# TODO: would be nice to get hardware congigs in here as well
|
|
|
|
# TODO: declarative disks with https://github.com/nix-community/disko
|
|
# TODO: home-manager?
|
|
|
|
|
|
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
|
"api.lyte.dev".url = "git+ssh://gitea@git.lyte.dev/lytedev/api.lyte.dev.git";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-23.05";
|
|
|
|
# use the version of nixpkgs we specified above rather than the one HM would ordinarily use
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = inputs: {
|
|
nixosConfigurations = {
|
|
beefcake = inputs.nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = let
|
|
ald = inputs."api.lyte.dev";
|
|
in [
|
|
./machines/beefcake.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.sops-nix.nixosModules.sops
|
|
ald.nixosModules."api.lyte.dev"
|
|
{
|
|
home-manager.useGlobalPkgs = true;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|