hosts: add tower

This commit is contained in:
Charlie Root 2025-03-02 19:35:22 +01:00
commit af1cf905eb
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
5 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,51 @@
{
lib,
pkgs,
...
}: {
# Time Zone
time.timeZone = "Europe/Vienna";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "uk";
security.polkit.enable = true;
# boot.kernelPackages = pkgs.linuxPackagesFor xanmod_blox;
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
programs.nix-ld.enable = true;
services = {
fstrim.enable = lib.mkDefault true;
};
meta = {
mainUser.gitSigningKey = "";
};
modules = {
system = {
programs = {
editors = {
helix.enable = true;
};
eza.enable = true;
};
};
usrEnv = {
desktops.hyprland.enable = false;
services = {
locate.enable = true;
};
};
other = {
system = {
username = "cr";
};
};
programs = {
ssh.enable = true;
btop.enable = true;
nh.enable = true;
};
# style.colorScheme.name = "Black Metal Venom";
};
}