Initial commit.

This commit is contained in:
tonybanters
2026-02-12 01:39:58 -08:00
commit d82cd7ae26
4 changed files with 195 additions and 0 deletions

39
configuration.nix Normal file
View File

@@ -0,0 +1,39 @@
{
config,
lib,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
./matrix.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos-matrix";
networking.networkmanager.enable = true;
time.timeZone = "America/Los_Angeles";
users.users.tony = {
isNormalUser = true;
extraGroups = ["wheel"];
};
services.openssh.enable = true;
services.nginx.enable = true;
security.acme = {
acceptTerms = true;
defaults.email = "your-email@example.com";
};
environment.systemPackages = with pkgs; [
vim
git
];
system.stateVersion = "25.11";
}