30 lines
555 B
Nix
30 lines
555 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
../../modules/nixos/networking/ssh.nix
|
|
../../modules/nixos/users/tulg.nix
|
|
./traefik.nix
|
|
];
|
|
|
|
networking.hostName = "kittykat";
|
|
environment.systemPackages = with pkgs; [
|
|
nano
|
|
fastfetch
|
|
kitty
|
|
];
|
|
services.xray-3x-ui = {
|
|
enable = true;
|
|
port = 2053;
|
|
openFirewall = true;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
system.stateVersion = "25.05";
|
|
}
|