mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
24 lines
358 B
Nix
24 lines
358 B
Nix
{ config, pkgs, user, ... }:
|
|
{
|
|
home.username = "${user}";
|
|
home.homeDirectory = "/home/${user}";
|
|
programs.home-manager.enable = true;
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
firefox
|
|
alacritty
|
|
gamemode
|
|
lutris
|
|
pcmanfm
|
|
discord
|
|
inkscape
|
|
libreoffice-fresh
|
|
chezmoi
|
|
rbw
|
|
vscodium.fhs
|
|
];
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|