Files
nix/home.nix
T

50 lines
1008 B
Nix
Raw Normal View History

2026-07-12 14:39:07 +02:00
{ config, pkgs, ... }: {
home.username = "glennigen";
home.homeDirectory = "/home/glennigen";
2026-07-14 21:16:03 +02:00
home.keyboard.layout = "dk";
home.keyboard.variant = "winkeys";
home.stateVersion = "26.05";
2026-07-12 14:39:07 +02:00
# Bruger-specifikke pakker — kun til glennigen
home.packages = with pkgs; [
# Editorer (personlige valg)
vscodium
2026-07-14 21:16:03 +02:00
powershell
# sublime4 #insecure OpenSSL?
2026-07-12 14:39:07 +02:00
# Media
2026-07-14 21:16:03 +02:00
sone # musikafspiller
obs-studio # streaming/optagelse
2026-07-12 14:39:07 +02:00
# Discord (Equibop)
equibop
# 1Password GUI
_1password-gui
2026-07-13 23:28:18 +02:00
# Browser
firefox
2026-07-14 21:16:03 +02:00
teams-for-linux
2026-07-12 14:39:07 +02:00
];
programs.bash.enable = true;
programs.starship.enable = true;
programs.git = {
enable = true;
settings.user.name = "glennigen";
settings.user.email = "glennigen@example.com";
2026-07-12 14:39:07 +02:00
};
# Plasma / Wayland tastaturlayout (dk)
xdg.configFile."kxkbrc".text = ''
[Layout]
DisplayNames=
LayoutList=dk
Use KDE Defaults=true
VariantList=
'';
2026-07-14 22:32:06 +02:00
xdg.configFile."fish".source = ./configs/fish;
2026-07-12 14:39:07 +02:00
}