This commit is contained in:
Sergei Poljanski 2025-12-25 16:35:41 +02:00
commit 1ca9adc614
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
4 changed files with 25 additions and 4 deletions

6
flake.lock generated
View file

@ -41,11 +41,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1764950072,
"narHash": "sha256-BmPWzogsG2GsXZtlT+MTcAWeDK5hkbGRZTeZNW42fwA=",
"lastModified": 1766309749,
"narHash": "sha256-3xY8CZ4rSnQ0NqGhMKAy5vgC+2IVK0NoVEzDoOh4DA4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f61125a668a320878494449750330ca58b78c557",
"rev": "a6531044f6d0bef691ea18d4d4ce44d0daa6e816",
"type": "github"
},
"original": {

View file

@ -12,6 +12,7 @@
"steam-unwrapped"
"steam-run"
"terraform"
"obsidian"
];
# List packages installed in system profile.
@ -61,6 +62,7 @@
# Development
nodejs_20
gnupg
go
# Automation / Cloud tools
ansible
@ -79,6 +81,9 @@
fluxcd
kubectx # switch between contexts/namespaces
stern # multi-pod log tailing
hcloud # Hetzner Cloud CLI
eksctl # AWS EKS CLI
# terragrunt # broken in nixpkgs
# WWAN modem tools
libmbim
@ -87,6 +92,13 @@
# Estonian ID / digital signature
qdigidoc
web-eid-app
# CLI utilities
tmux
tldr
yq-go # YAML processor
whois
# Privacy / Anonymity
tor-browser

View file

@ -38,4 +38,11 @@
# Enable fwupd service
services.fwupd.enable = true;
# Virtualization (KVM/QEMU)
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
# Docker
virtualisation.docker.enable = true;
}

View file

@ -8,7 +8,7 @@
users.users.asxpi = {
isNormalUser = true;
description = "Sergei P";
extraGroups = [ "networkmanager" "wheel" "dialout" ];
extraGroups = [ "networkmanager" "wheel" "dialout" "libvirtd" "docker" ];
shell = pkgs.zsh;
packages = with pkgs; [
# Internet
@ -29,6 +29,8 @@
# bolt-launcher
# Utils
cameractrls
# Notes
obsidian
];
};
}