This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/default.nix

29 lines
398 B
Nix

{ config, pkgs, ... }:
{
# imports
imports = [
./alacritty
./clipse
./git
./hyprland
./mpv
./ssh
./theme
./virt-manager
./xdg
./zsh
];
# user
home.username = "simon";
home.homeDirectory = "/home/simon";
# fonts
fonts.fontconfig.enable = true;
# home-manager
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}