nixfiles/hosts/lappy-t495/lappy-t495.nix

49 lines
977 B
Nix
Raw Normal View History

{tree, ...}: {
2023-07-21 11:48:07 +01:00
imports = with tree; [
users.root
users.chaos
profiles.sshd
profiles.kernels.latest
presets.nixos.desktop-sway
2023-07-21 11:48:07 +01:00
presets.nixos.laptop
presets.nixos.encrypted-usb
profiles.cross.arm64
2023-09-14 19:44:27 +01:00
profiles.remote-builders
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
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";
}