Files
nix/modules/apps/native.nix
T

41 lines
696 B
Nix
Raw Normal View History

2026-07-12 14:39:07 +02:00
{ pkgs, ... }: {
# Native system packages — fra din Ansible DNF-liste
environment.systemPackages = with pkgs; [
# Terminal / shell
kitty
fish
fastfetch
lsd
glow
btop
tldr
neovim
# Git
git
gh
# Gaming
steam
gamemode
gamescope
# Utility
stow
tailscale
];
# Fish som default shell for glennigen
programs.fish.enable = true;
# Steam
programs.steam.enable = true;
# Tailscale (service, ikke package)
services.tailscale.enable = true;
# 1Password — PolKit integration (system-level)
security.polkit.enable = true;
programs._1password.enable = true;
programs._1password-gui.enable = true;
}