44 lines
676 B
Nix
44 lines
676 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home = {
|
|
stateVersion = "23.05";
|
|
username = "sara";
|
|
homeDirectory = "/home/sara";
|
|
packages = with pkgs; [
|
|
# Base
|
|
firefox
|
|
thunderbird
|
|
signal-desktop
|
|
# Office
|
|
onlyoffice-bin
|
|
# Security
|
|
keepassxc
|
|
# Entertainment
|
|
stremio
|
|
spotify
|
|
# Art
|
|
inkscape
|
|
# Shell
|
|
thefuck
|
|
# Programming
|
|
gcc
|
|
cmake
|
|
make
|
|
godot_4
|
|
rustc
|
|
rustup
|
|
cargo
|
|
];
|
|
};
|
|
|
|
imports = [
|
|
# Home-manager configured program files
|
|
./neovim.nix
|
|
./hyfetch.nix
|
|
./zsh.nix
|
|
./git.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|