Alejandra'd the configs
This commit is contained in:
parent
45ec1b2bdc
commit
cd0d39bdeb
2 changed files with 66 additions and 57 deletions
|
|
@ -59,12 +59,9 @@ in {
|
|||
LC_TIME = "en_AU.UTF-8";
|
||||
};
|
||||
|
||||
|
||||
# Enable Tailscale for secure remote access
|
||||
services.tailscale.enable = true;
|
||||
|
||||
|
||||
|
||||
# Enable Seatd for Wayland sessions (needed for sway/seat management)
|
||||
services.seatd = {
|
||||
enable = true;
|
||||
|
|
@ -117,7 +114,6 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
# SSH Agent authentication
|
||||
security.pam.sshAgentAuth.enable = true;
|
||||
|
||||
|
|
@ -128,7 +124,6 @@ in {
|
|||
allowReboot = false;
|
||||
};
|
||||
|
||||
|
||||
# Enable Traefik service
|
||||
services.traefik = {
|
||||
enable = true;
|
||||
|
|
@ -227,7 +222,6 @@ in {
|
|||
wants = ["acme-finished-prg-radio.org.target"];
|
||||
};
|
||||
|
||||
|
||||
# Add extra system packages from example.nix (appended to existing list)
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
|
|
@ -318,13 +312,28 @@ in {
|
|||
settings = {
|
||||
window = {
|
||||
opacity = 1.0;
|
||||
padding = { x = 10; y = 10; };
|
||||
padding = {
|
||||
x = 10;
|
||||
y = 10;
|
||||
};
|
||||
};
|
||||
font = {
|
||||
normal = { family = "Maple Mono NF"; style = "Regular"; };
|
||||
bold = { family = "Maple Mono NF"; style = "Bold"; };
|
||||
italic = { family = "Maple Mono NF"; style = "Italic"; };
|
||||
bold_italic = { family = "Maple Mono NF"; style = "Bold Italic"; };
|
||||
normal = {
|
||||
family = "Maple Mono NF";
|
||||
style = "Regular";
|
||||
};
|
||||
bold = {
|
||||
family = "Maple Mono NF";
|
||||
style = "Bold";
|
||||
};
|
||||
italic = {
|
||||
family = "Maple Mono NF";
|
||||
style = "Italic";
|
||||
};
|
||||
bold_italic = {
|
||||
family = "Maple Mono NF";
|
||||
style = "Bold Italic";
|
||||
};
|
||||
size = 14.0;
|
||||
};
|
||||
colors = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue