Setup host

This commit is contained in:
Nettika 2026-02-24 16:35:58 -08:00
commit 0768504430
No known key found for this signature in database
GPG key ID: C357EE70D5027BCC
5 changed files with 190 additions and 0 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
description = "NixOS configuration for egregore";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ nixpkgs, disko, ... }:
{
nixosConfigurations.egregore = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
disko.nixosModules.disko
./configuration.nix
];
};
};
}