26 lines
351 B
Nix
26 lines
351 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
|
||
|
# imports
|
||
|
imports = [
|
||
|
./alacritty
|
||
|
./git
|
||
|
./mpv
|
||
|
./ssh
|
||
|
./theme
|
||
|
./xdg
|
||
|
./zsh
|
||
|
];
|
||
|
|
||
|
# user
|
||
|
home.username = "simon";
|
||
|
home.homeDirectory = "/home/simon";
|
||
|
|
||
|
# fonts
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
# home-manager
|
||
|
home.stateVersion = "23.05";
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|