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