nix-config/modules/system/home/default.nix
2024-03-20 12:06:10 +01:00

29 lines
383 B
Nix

{ ... }: {
imports = [
./art
./browser
./chat
# ./cursor
./discord
./direnv
./editor
./email
./gdb
./git
./media
./niri-setup
./notes
./shell
./terminal
./utils
];
home = {
username = "twoneis";
homeDirectory = "/home/twoneis";
stateVersion = "22.11";
};
programs.home-manager.enable = true;
}