2024-03-30 09:28:16 +00:00
|
|
|
{tree, ...}: {
|
|
|
|
imports = with tree; [
|
|
|
|
users.root
|
|
|
|
users.chaos
|
|
|
|
profiles.sshd
|
|
|
|
|
|
|
|
presets.nixos.desktopGnome
|
|
|
|
presets.nixos.laptop
|
|
|
|
presets.nixos.encryptedUSB
|
|
|
|
|
|
|
|
profiles.cross.arm64
|
|
|
|
profiles.remoteBuilders
|
|
|
|
#profiles.chaosInternalWireGuard
|
|
|
|
|
|
|
|
./secrets.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.users.root = {
|
|
|
|
imports = with tree; [home.base];
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.chaos = {
|
|
|
|
imports = with tree; [
|
|
|
|
home.base
|
|
|
|
home.dev.all
|
|
|
|
home.reversing
|
|
|
|
home.homeFolders
|
2024-03-30 10:21:07 +00:00
|
|
|
home.musicLibrary
|
2024-03-30 09:28:16 +00:00
|
|
|
|
|
|
|
home.programming.editors.nano
|
|
|
|
home.programming.editors.vscode
|
|
|
|
home.programming.languages.rust
|
|
|
|
home.programming.languages.nix
|
|
|
|
];
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
networking.firewall.allowPing = true;
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [8088];
|
|
|
|
|
|
|
|
networking.hostName = "lappy-surface";
|
2024-04-05 18:38:15 +01:00
|
|
|
time.timeZone = "Europe/London";
|
2024-03-30 09:28:16 +00:00
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|