1
0
Fork 0

Reorganize common configuration

This commit is contained in:
Avery 2025-06-21 20:02:48 +02:00
parent b0435707e4
commit 84dfefcb45
Signed by: Avery
GPG key ID: B684FD451B692E04
18 changed files with 81 additions and 128 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, ... }: {
imports = [ ./development.nix ./zsh.nix ];
home = {
username = "avery";
homeDirectory = "/home/avery";
stateVersion = "24.05";
packages = with pkgs; [ rclone xdg-utils ];
sessionVariables = { EDITOR = "nvim"; };
};
programs.home-manager.enable = true;
}