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

47 lines
941 B
Nix
Raw Normal View History

{tree, ...}: {
2023-07-21 11:48:07 +01:00
imports = with tree; [
users.root
users.chaos
profiles.sshd
presets.nixos.desktopGnome
2023-07-21 11:48:07 +01:00
presets.nixos.laptop
2023-09-18 03:56:58 +01:00
presets.nixos.encryptedUSB
2023-07-21 11:48:07 +01:00
profiles.cross.arm64
#profiles.remote-builders
profiles.chaosInternalWireGuard
2023-08-09 20:53:22 +01:00
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
2023-09-19 17:53:44 +01:00
home.homeFolders
home.manualBackupApps
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";
}