77bdbe108d
New NixOS VM on proxmox, replacing the Ubuntu box. Reuses the existing Hyprland config; remote access is Sunshine/Moonlight rather than xrdp, since xrdp cannot drive a wayland compositor. Two fixes here are not yolo-specific and affect any fresh install: git at system level (nix needs it for the type = "git" hyprland input, but git only came from home-manager, so neither rebuild could run), and dropping the yogurt input, whose private repo made home-manager un-evaluatable without GitHub auth. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
44 lines
698 B
Nix
44 lines
698 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../features/mutable-file.nix
|
|
./zsh.nix
|
|
./nix.nix
|
|
./neovim
|
|
./rust.nix
|
|
./elixir.nix
|
|
./nodejs.nix
|
|
./git
|
|
./solidity.nix
|
|
./dev.nix
|
|
./cpp.nix
|
|
./claude
|
|
./opencode
|
|
./yazi
|
|
./ssh.nix
|
|
./tmux.nix
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
};
|
|
|
|
home = {
|
|
mutableFilesRepoPath = "${config.home.homeDirectory}/projects/nixos-config";
|
|
|
|
packages = with pkgs; [
|
|
impala
|
|
];
|
|
|
|
username = lib.mkDefault "naps62";
|
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
|
stateVersion = lib.mkDefault "24.05";
|
|
sessionPath = [ "$HOME/.local/bin" ];
|
|
};
|
|
}
|