39e6276c7d
Tooling: - nh + nvd/nom/statix/deadnix/comma (new programs/nix.nix); GC via nh clean - zoxide (cd), atuin, just, lazydocker, dust, duf, difftastic (git dft) Structure: - rename desktop -> konishi; homeConfigurations -> "user@host" for nh autodetect Removals (heavy/unused): - android-studio, unity/.NET/omnisharp/vscode, kicad, zoom, calibre, google-fonts, nerd-dictation Screen recording: - kooha + vokoscreen-ng + `webcam` corner-cam command/window-rule Fixes: - WEBKIT_DISABLE_DMABUF_RENDERER moved to common (electron/tauri on intel) - kitty pinned to Catppuccin-Mocha; darkman no longer toggles kitty/claude - claude theme dark + statusline locale fix - ssh: migrate to settings API + multiplexing/keepalive/AddKeysToAgent; gpg-agent enableSshSupport - silence hyprland configType / gtk4 / xdg userDirs deprecations Flake hygiene: - follows=nixpkgs for foundry/hardware/rose-pine/zen/spicetify (10->5 nixpkgs) - zoxide _ZO_DOCTOR=0 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../common/global
|
|
../common/features/user.nix
|
|
../common/features/networking.nix
|
|
../common/features/gpu/nvidia.nix
|
|
../common/features/display
|
|
../common/features/pipewire.nix
|
|
../common/features/docker.nix
|
|
../common/features/fonts.nix
|
|
../common/features/nix-ld.nix
|
|
../common/features/bluetooth.nix
|
|
../common/features/ledger.nix
|
|
../common/features/wine.nix
|
|
../common/features/steam.nix
|
|
../common/features/appimage.nix
|
|
../common/features/home
|
|
];
|
|
|
|
networking.hostName = "konishi";
|
|
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
BOTTOM='HDMI-0'
|
|
TOP='DP-0'
|
|
RIGHT='DP-2'
|
|
|
|
# Match Hyprland layout: TOP at 0x0, BOTTOM at 0x2160, RIGHT at 3840x180
|
|
${pkgs.xrandr}/bin/xrandr \
|
|
--output $TOP --mode 3840x2160 --pos 0x0 --rotate normal \
|
|
--output $BOTTOM --primary --mode 3840x2160 --pos 0x2160 --rotate normal \
|
|
--output $RIGHT --mode 3840x2160 --pos 3840x180 --rotate left
|
|
${pkgs.xrandr}/bin/xrandr --dpi 160
|
|
'';
|
|
|
|
networking.nameservers = [
|
|
"100.100.100.100"
|
|
"10.1.10.1"
|
|
];
|
|
}
|