34 lines
493 B
Nix
34 lines
493 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
homeDirectory = "/home/amneesh";
|
|
username = "amneesh";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
targets.genericLinux.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
|
|
];
|
|
}
|