home: amneesh: move ubuntu->arch and use existing config

Signed-off-by: Amneesh Singh <amneesh@ti.com>
This commit is contained in:
Amneesh Singh
2025-08-25 18:03:38 +05:30
parent 5785832cbe
commit abd567a8a5
13 changed files with 267 additions and 165 deletions

View File

@@ -9,16 +9,25 @@
homeDirectory = "/home/amneesh";
username = "amneesh";
stateVersion = "24.05";
packages = with pkgs; [
htop
nattovim
clang-tools
llvmPackages.clang
];
};
xdg.mime.enable = true;
targets.genericLinux.enable = true;
programs.bash.enable = true;
imports = [
./pkgs.nix
# From personal
../natto/ags
../natto/emacs.nix
../natto/browser.nix
../natto/dunst.nix
../natto/gtk.nix
../natto/cursor.nix
# When wayland
../natto/wayland.nix
../natto/hyprland.nix
../natto/tofi.nix
../natto/foot.nix
];
}

17
home/amneesh/pkgs.nix Normal file
View File

@@ -0,0 +1,17 @@
{
pkgs,
inputs,
...
}:
{
xdg.mime.enable = true;
programs.bash.enable = true;
home.packages = with pkgs; [
htop
clang-tools
llvmPackages.clang
(nattovim.override { nvimPackage = inputs.nvim-overlay.packages.${pkgs.system}.neovim; })
];
}