29 lines
383 B
Nix
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;
|
|
}
|