mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 03:49:44 +00:00
- Added btop.nix on vps and y2q - Moved btop.nix from home/modules/graphical/ to home/modules/cli/ - Removed some unnecessary modules from y2q
22 lines
423 B
Nix
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";
|
|
}
|