2023-07-29 16:41:20 +01:00
|
|
|
{tree, ...}: {
|
2023-07-21 11:48:07 +01:00
|
|
|
imports = with tree; [
|
|
|
|
users.root
|
|
|
|
users.chaos
|
|
|
|
profiles.sshd
|
|
|
|
profiles.kernels.latest
|
|
|
|
|
2023-08-29 14:07:17 +01:00
|
|
|
presets.nixos.desktop-sway
|
2023-07-21 11:48:07 +01:00
|
|
|
presets.nixos.laptop
|
|
|
|
presets.nixos.encrypted-usb
|
|
|
|
|
2023-09-13 16:21:54 +01:00
|
|
|
profiles.cross.arm64
|
|
|
|
|
2023-08-09 20:53:22 +01:00
|
|
|
hosts.lappy-t495.profiles.wireguard
|
|
|
|
|
2023-07-21 11:48:07 +01:00
|
|
|
./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.home-folders
|
2023-08-01 18:48:59 +01:00
|
|
|
home.manual-backup-apps
|
2023-07-21 11:48:07 +01:00
|
|
|
|
|
|
|
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-t495";
|
2023-08-09 15:11:04 +01:00
|
|
|
time.timeZone = "Europe/London";
|
2023-07-21 11:48:07 +01:00
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|