cityseventeen: rename and make tokyo night

This commit is contained in:
Artur Manuel 2025-04-03 02:26:24 +01:00
commit 0d7aa6843b
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
36 changed files with 394 additions and 438 deletions

View file

@ -0,0 +1,72 @@
{
pkgs,
inputs,
...
}:
{
imports = [
./users/arturm
./hardware.nix
./theme.nix
./apps.nix
./fonts.nix
./forgejo.nix
./jellyfin.nix
];
config = {
boot = {
initrd = {
systemd.additionalUpstreamUnits = [ "systemd-boot.service" ];
luks.devices = {
"luks-c354eb7f-1e69-4054-afa2-8c4e81a761fa" = {
device = "/dev/disk/by-uuid/c354eb7f-1e69-4054-afa2-8c4e81a761fa";
};
};
};
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
nixpkgs.overlays = [
inputs.alqages.overlays.default
];
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
services = {
xserver = {
xkb = {
layout = "us";
options = "eurosign:e,ctrl:nocaps";
};
displayManager.gdm = {
enable = true;
wayland = true;
};
};
udev.packages = [
pkgs.android-udev-rules
];
libinput.enable = true;
openssh.enable = true;
};
hardware.graphics = {
enable = true;
enable32Bit = false;
};
networking.networkmanager.enable = true;
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_US.UTF-8";
system.stateVersion = "24.11";
};
}