init commit

This commit is contained in:
Jermeiah S 2025-06-13 23:18:52 -04:00
commit 8f7a75814d
No known key found for this signature in database
21 changed files with 1073 additions and 0 deletions

10
modules/nixos/default.nix Normal file
View file

@ -0,0 +1,10 @@
# This is your nixos configuration.
# For home configuration, see /modules/home/*
{ flake, ... }:
{
imports = [
flake.inputs.self.nixosModules.common
];
services.openssh.enable = true;
nixpkgs.overlays = [ flake.inputs.self.overlays.default ];
}