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

54 lines
1.1 KiB
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.remoteBuilders
profiles.chaosInternalWireGuard
2023-08-09 20:53:22 +01:00
profiles.gaming.steam
2023-07-21 11:48:07 +01:00
./secrets.nix
];
home-manager.users.root = {
imports = with tree; [home.base];
home.stateVersion = "24.05";
2023-07-21 11:48:07 +01:00
};
home-manager.users.chaos = {
imports = with tree; [
home.base
home.dev.all
home.reversing
2023-09-19 17:53:44 +01:00
home.homeFolders
home.musicLibrary
2023-07-21 11:48:07 +01:00
2024-03-10 22:16:06 +00:00
home.programming.editors.nano
2023-07-21 11:48:07 +01:00
home.programming.editors.vscode
home.programming.languages.rust
home.programming.languages.nix
home.gaming.platforms.steam
home.gaming.platforms.lutris
2023-07-21 11:48:07 +01:00
];
home.stateVersion = "24.05";
2023-07-21 11:48:07 +01:00
};
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 = "24.05";
2023-07-21 11:48:07 +01:00
}