25 lines
317 B
Nix
25 lines
317 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "averodas";
|
|
home.homeDirectory = "/home/averodas";
|
|
home.stateVersion = "25.11";
|
|
home.packages = with pkgs; [
|
|
guake
|
|
zed-editor
|
|
floorp-bin
|
|
strawberry
|
|
xpipe
|
|
keepassxc
|
|
foot
|
|
htop
|
|
wireshark
|
|
godot
|
|
qt6Packages.qt6ct
|
|
steam
|
|
lutris
|
|
freac
|
|
cmatrix
|
|
];
|
|
}
|