mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
30 lines
751 B
Nix
30 lines
751 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/users/elise"
|
|
"${inputs.self}/users/richie"
|
|
"${inputs.self}/common/global"
|
|
"${inputs.self}/common/optional/desktop.nix"
|
|
"${inputs.self}/common/optional/steam.nix"
|
|
"${inputs.self}/common/optional/systemd-boot.nix"
|
|
"${inputs.self}/common/optional/update.nix"
|
|
"${inputs.self}/common/optional/zerotier.nix"
|
|
"${inputs.self}/common/optional/brain_substituter.nix"
|
|
./hardware.nix
|
|
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
|
|
];
|
|
|
|
networking = {
|
|
hostName = "leviathan";
|
|
hostId = "cb9b64d8";
|
|
firewall.enable = true;
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh.ports = [ 332 ];
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|