rm dotbot; move everything to home manager
This commit is contained in:
parent
cedd2c1983
commit
c1b64baea7
39 changed files with 7 additions and 37 deletions
43
home/yt/chunk.nix
Normal file
43
home/yt/chunk.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
outputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./common.nix
|
||||
];
|
||||
home = {
|
||||
username = "yt";
|
||||
homeDirectory = "/home/yt";
|
||||
stateVersion = "24.05";
|
||||
};
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "cy";
|
||||
userEmail = "hi@cything.io";
|
||||
delta.enable = true;
|
||||
};
|
||||
|
||||
programs.neovim.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
lua-language-server
|
||||
vim-language-server
|
||||
python312Packages.python-lsp-server
|
||||
nixd
|
||||
gopls
|
||||
bash-language-server
|
||||
llvmPackages_19.clang-tools
|
||||
rust-analyzer
|
||||
yt-dlp
|
||||
gnumake
|
||||
btop
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue