nix-config/home/hosts/y2q.nix
lightly-toasted 5b8f3930c2 feat(home): add btop on host vps and y2q
- Added btop.nix on vps and y2q
- Moved btop.nix from home/modules/graphical/ to home/modules/cli/
- Removed some unnecessary modules from y2q
2025-10-10 16:21:15 +09:00

22 lines
423 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
inputs.nixvim.homeModules.nixvim
../modules/cli/git.nix
../modules/cli/ripgrep.nix
../modules/cli/btop.nix
../modules/cli/yazi.nix
../modules/cli/nixvim
];
home = {
username = "android";
homeDirectory = "/home/android";
stateVersion = "24.11";
};
nixpkgs.config.allowUnfree = true;
systemd.user.startServices = "sd-switch";
}