initial commit

This commit is contained in:
michal 2025-11-07 12:06:29 +00:00
commit a4b7f28d8e
3 changed files with 116 additions and 0 deletions

11
configuration.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git vim
];
users.users."michal".packages = with pkgs; [
socat starship zellij
];
}