24 lines
556 B
Nix
24 lines
556 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./packages/env
|
|
./packages/tui
|
|
./packages/gui/browser.nix
|
|
./packages/gui/neovide.nix
|
|
./packages/gui/libreoffice.nix
|
|
./packages/gui/cloud.nix
|
|
./packages/gui/kitty.nix
|
|
./packages/gui/messaging.nix
|
|
./packages/gui/nomachine.nix
|
|
./packages/gui/ukaea.nix
|
|
];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
|
|
programs.git = {
|
|
userEmail = "evie.litherland-smith@ukaea.uk";
|
|
};
|
|
}
|