Files
2025-05-14 09:33:06 -05:00

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";
}