64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ config, pkgs, ... }: {
|
|
home.username = "glennigen";
|
|
home.homeDirectory = "/home/glennigen";
|
|
home.keyboard.layout = "dk";
|
|
home.keyboard.variant = "winkeys";
|
|
home.stateVersion = "26.05";
|
|
|
|
#home.file = {
|
|
# ".config/fish" = {
|
|
# source = ./configs/fish;
|
|
# #recursive = true;
|
|
# };
|
|
#};
|
|
|
|
home.file.".config/fish".source =
|
|
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nix/configs/fish";
|
|
home.file.".config/kitty".source =
|
|
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nix/configs/kitty";
|
|
home.file.".config/pipewire".source =
|
|
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nix/configs/pipewire";
|
|
home.file.".config/VSCodium".source =
|
|
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nix/configs/VSCodium";
|
|
|
|
# Bruger-specifikke pakker — kun til glennigen
|
|
home.packages = with pkgs; [
|
|
# Editorer (personlige valg)
|
|
vscodium
|
|
powershell
|
|
# sublime4 #insecure OpenSSL?
|
|
|
|
# Media
|
|
sone # musikafspiller
|
|
obs-studio # streaming/optagelse
|
|
|
|
# Discord (Equibop)
|
|
equibop
|
|
|
|
# 1Password GUI
|
|
_1password-gui
|
|
|
|
# Browser
|
|
firefox
|
|
teams-for-linux
|
|
];
|
|
|
|
programs.bash.enable = true;
|
|
programs.starship.enable = true;
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings.user.name = "glennigen";
|
|
settings.user.email = "glennigen@example.com";
|
|
};
|
|
|
|
# Plasma / Wayland tastaturlayout (dk)
|
|
xdg.configFile."kxkbrc".text = ''
|
|
[Layout]
|
|
DisplayNames=
|
|
LayoutList=dk
|
|
Use KDE Defaults=true
|
|
VariantList=
|
|
'';
|
|
}
|