hosts: add FredOS-Kayla — plain KDE Plasma desktop for kayla

This commit is contained in:
rope 2026-08-10 08:44:50 +01:00
parent ccf6badd78
commit 0e1c540cca
5 changed files with 104 additions and 1 deletions

View file

@ -1,7 +1,7 @@
# audio.nix
{ config, pkgs, lib, ... }:
{
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" "FredOS-Kayla" ]) {
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {

View file

@ -22,4 +22,12 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID12fECfsFS+vOXUa9na4nhBtx9DVbGD12aRQ8a9Bh0Z fredrik@work-laptop" # Work laptop (Windows), replaced old work PC key 2026-07-28
];
};
# Kayla only exists on her own box. Password with `passwd kayla` after the
# first boot. wheel so `update` can sudo; no NOPASSWD rule (that's fred's).
users.users.kayla = lib.mkIf (config.networking.hostName == "FredOS-Kayla") {
isNormalUser = true;
description = "Kayla";
extraGroups = [ "networkmanager" "wheel" "video" ];
};
}