27 lines
464 B
Nix
27 lines
464 B
Nix
{
|
|
inputs, outputs, lib, config, pkgs, ...
|
|
}: {
|
|
imports = [
|
|
../modules/editor.nix
|
|
../modules/terminal.nix
|
|
../modules/wayland.nix
|
|
];
|
|
|
|
home = {
|
|
username = "biscuit";
|
|
homeDirectory = "/home/biscuit";
|
|
};
|
|
|
|
home.packages = [];
|
|
home.sessionVariables = {};
|
|
|
|
programs.git.enable = true;
|
|
programs.neovim.enable = true;
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "23.05";
|
|
}
|
|
|