HermitNix_DEPRECATED/Users/Sara/homeFull.nix

44 lines
676 B
Nix
Raw Normal View History

2023-11-06 19:14:02 +00:00
{ 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;
}