1
0
Fork 0

Install python3 globally on mizuki and modularize home config

This commit is contained in:
Avery 2025-02-25 10:05:00 +00:00
parent e01670d4e1
commit 162856f7fb
Signed by: Avery
GPG key ID: B684FD451B692E04
3 changed files with 51 additions and 7 deletions

10
hosts/mizuki/home.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
home = {
username = "avery";
homeDirectory = "/home/avery";
stateVersion = "24.11";
packages = with pkgs; [ python3 ];
sessionVariables.EDITOR = "nvim";
};
programs.home-manager.enable = true;
}