misc: initial commit

This commit is contained in:
Emily 2024-12-28 19:33:49 -05:00
commit 964b99b28d
32 changed files with 1675 additions and 0 deletions

13
systems/default.nix Normal file
View file

@ -0,0 +1,13 @@
{inputs, ...}: let
inherit (inputs) nixpkgs;
inherit (nixpkgs.lib) nixosSystem;
in {
flake.nixosConfigurations.atreus = nixosSystem {
specialArgs = {inherit inputs;};
modules = [
{networking.hostName = "atreus";}
../nixos/common/flake-support.nix
../nixos
];
};
}