├── .github └── workflows │ ├── jekyll-gh-pages.yml │ └── nix-github-actions.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO-LIST.md ├── assets └── images │ └── svg │ ├── nixos-logo-black.svg │ └── nixos-logo-white.svg ├── flake.lock ├── flake.nix ├── makefile ├── modules ├── README.md ├── common │ ├── README.md │ ├── boot │ │ ├── default.nix │ │ └── loader │ │ │ ├── default.nix │ │ │ ├── efi │ │ │ └── default.nix │ │ │ ├── grub │ │ │ └── default.nix │ │ │ └── systemd-boot │ │ │ └── default.nix │ ├── default.nix │ ├── environment │ │ ├── default.nix │ │ └── systemPackages │ │ │ └── default.nix │ ├── fonts │ │ └── default.nix │ ├── hardware │ │ ├── default.nix │ │ └── pulseaudio │ │ │ └── default.nix │ ├── i18n │ │ ├── default.nix │ │ └── extraLocaleSettings │ │ │ └── default.nix │ ├── networking │ │ ├── default.nix │ │ ├── firewall │ │ │ └── default.nix │ │ ├── networkmanager │ │ │ └── default.nix │ │ ├── proxy │ │ │ └── default.nix │ │ └── wireless │ │ │ └── default.nix │ ├── nix │ │ ├── default.nix │ │ ├── gc │ │ │ └── default.nix │ │ └── settings │ │ │ ├── default.nix │ │ │ └── experimental-features │ │ │ └── default.nix │ ├── nixpkgs │ │ ├── config │ │ │ └── default.nix │ │ └── default.nix │ ├── security │ │ ├── default.nix │ │ ├── rtkit │ │ │ └── default.nix │ │ └── sudo │ │ │ └── default.nix │ ├── services │ │ ├── default.nix │ │ ├── espanso │ │ │ └── default.nix │ │ ├── libinput │ │ │ └── default.nix │ │ ├── logind │ │ │ └── default.nix │ │ ├── pipewire │ │ │ └── default.nix │ │ ├── printing │ │ │ └── default.nix │ │ └── tailscale │ │ │ └── default.nix │ ├── sops │ │ └── default.nix │ ├── system │ │ ├── autoUpgrade │ │ │ └── default.nix │ │ └── default.nix │ ├── time │ │ └── default.nix │ └── users │ │ ├── default.nix │ │ └── extraUsers │ │ └── default.nix ├── default.nix ├── system-level │ ├── README.md │ ├── default.nix │ ├── gaming │ │ ├── README.md │ │ └── default.nix │ ├── gpg │ │ ├── README.md │ │ └── default.nix │ ├── gui │ │ ├── README.md │ │ ├── default.nix │ │ ├── gnome │ │ │ ├── README.md │ │ │ └── default.nix │ │ ├── hyprland │ │ │ ├── README.md │ │ │ ├── default.nix │ │ │ └── extra-packages.nix │ │ ├── i3wm │ │ │ ├── README.md │ │ │ └── default.nix │ │ └── kde │ │ │ ├── README.md │ │ │ └── default.nix │ ├── local-ai │ │ ├── README.md │ │ └── default.nix │ ├── nvidia │ │ ├── README.md │ │ ├── default.nix │ │ └── example.config.nix │ ├── onedrive │ │ ├── README.md │ │ └── default.nix │ ├── openssh │ │ ├── README.md │ │ └── default.nix │ ├── podman │ │ ├── README.md │ │ └── default.nix │ ├── power-efficiency │ │ ├── README.md │ │ └── default.nix │ ├── via │ │ ├── README.md │ │ └── default.nix │ └── wsl │ │ ├── README.md │ │ └── default.nix └── user-level │ ├── README.md │ ├── default.nix │ ├── docker │ └── default.nix │ ├── home-manager │ ├── .gitignore │ ├── default.nix │ └── default.png │ ├── key-remapper │ ├── README.md │ ├── default.nix │ ├── kmonad │ │ ├── README.md │ │ ├── default.nix │ │ └── kmonad.nix │ └── xremap │ │ ├── README.md │ │ ├── config.yml │ │ └── default.nix │ └── virtualbox │ ├── README.md │ └── default.nix └── systems ├── README.md ├── common-settings.nix ├── get.nix ├── laptops ├── README.md ├── common-settings.nix └── thinkpad │ ├── hardware-configuration.nix │ ├── overrides.nix │ └── settings.nix ├── list.nix ├── recursive-merge.nix └── vms ├── README.md ├── common-settings.nix └── kubernetes ├── hardware-configuration.nix ├── overrides.nix └── settings.nix /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/nix-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/.github/workflows/nix-github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/README.md -------------------------------------------------------------------------------- /TODO-LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/TODO-LIST.md -------------------------------------------------------------------------------- /assets/images/svg/nixos-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/assets/images/svg/nixos-logo-black.svg -------------------------------------------------------------------------------- /assets/images/svg/nixos-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/assets/images/svg/nixos-logo-white.svg -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/flake.nix -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/makefile -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/README.md -------------------------------------------------------------------------------- /modules/common/boot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/boot/default.nix -------------------------------------------------------------------------------- /modules/common/boot/loader/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/boot/loader/default.nix -------------------------------------------------------------------------------- /modules/common/boot/loader/efi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/boot/loader/efi/default.nix -------------------------------------------------------------------------------- /modules/common/boot/loader/grub/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/boot/loader/grub/default.nix -------------------------------------------------------------------------------- /modules/common/boot/loader/systemd-boot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/boot/loader/systemd-boot/default.nix -------------------------------------------------------------------------------- /modules/common/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/default.nix -------------------------------------------------------------------------------- /modules/common/environment/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/environment/default.nix -------------------------------------------------------------------------------- /modules/common/environment/systemPackages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/environment/systemPackages/default.nix -------------------------------------------------------------------------------- /modules/common/fonts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/fonts/default.nix -------------------------------------------------------------------------------- /modules/common/hardware/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/hardware/default.nix -------------------------------------------------------------------------------- /modules/common/hardware/pulseaudio/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/hardware/pulseaudio/default.nix -------------------------------------------------------------------------------- /modules/common/i18n/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/i18n/default.nix -------------------------------------------------------------------------------- /modules/common/i18n/extraLocaleSettings/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/i18n/extraLocaleSettings/default.nix -------------------------------------------------------------------------------- /modules/common/networking/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/networking/default.nix -------------------------------------------------------------------------------- /modules/common/networking/firewall/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/networking/firewall/default.nix -------------------------------------------------------------------------------- /modules/common/networking/networkmanager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/networking/networkmanager/default.nix -------------------------------------------------------------------------------- /modules/common/networking/proxy/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/networking/proxy/default.nix -------------------------------------------------------------------------------- /modules/common/networking/wireless/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/networking/wireless/default.nix -------------------------------------------------------------------------------- /modules/common/nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nix/default.nix -------------------------------------------------------------------------------- /modules/common/nix/gc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nix/gc/default.nix -------------------------------------------------------------------------------- /modules/common/nix/settings/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nix/settings/default.nix -------------------------------------------------------------------------------- /modules/common/nix/settings/experimental-features/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nix/settings/experimental-features/default.nix -------------------------------------------------------------------------------- /modules/common/nixpkgs/config/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nixpkgs/config/default.nix -------------------------------------------------------------------------------- /modules/common/nixpkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/nixpkgs/default.nix -------------------------------------------------------------------------------- /modules/common/security/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/security/default.nix -------------------------------------------------------------------------------- /modules/common/security/rtkit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/security/rtkit/default.nix -------------------------------------------------------------------------------- /modules/common/security/sudo/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/security/sudo/default.nix -------------------------------------------------------------------------------- /modules/common/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/default.nix -------------------------------------------------------------------------------- /modules/common/services/espanso/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/espanso/default.nix -------------------------------------------------------------------------------- /modules/common/services/libinput/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/libinput/default.nix -------------------------------------------------------------------------------- /modules/common/services/logind/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/logind/default.nix -------------------------------------------------------------------------------- /modules/common/services/pipewire/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/pipewire/default.nix -------------------------------------------------------------------------------- /modules/common/services/printing/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/printing/default.nix -------------------------------------------------------------------------------- /modules/common/services/tailscale/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/services/tailscale/default.nix -------------------------------------------------------------------------------- /modules/common/sops/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/sops/default.nix -------------------------------------------------------------------------------- /modules/common/system/autoUpgrade/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/system/autoUpgrade/default.nix -------------------------------------------------------------------------------- /modules/common/system/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/system/default.nix -------------------------------------------------------------------------------- /modules/common/time/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/time/default.nix -------------------------------------------------------------------------------- /modules/common/users/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/users/default.nix -------------------------------------------------------------------------------- /modules/common/users/extraUsers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/common/users/extraUsers/default.nix -------------------------------------------------------------------------------- /modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/default.nix -------------------------------------------------------------------------------- /modules/system-level/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/README.md -------------------------------------------------------------------------------- /modules/system-level/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/default.nix -------------------------------------------------------------------------------- /modules/system-level/gaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gaming/README.md -------------------------------------------------------------------------------- /modules/system-level/gaming/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gaming/default.nix -------------------------------------------------------------------------------- /modules/system-level/gpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gpg/README.md -------------------------------------------------------------------------------- /modules/system-level/gpg/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gpg/default.nix -------------------------------------------------------------------------------- /modules/system-level/gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/README.md -------------------------------------------------------------------------------- /modules/system-level/gui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/default.nix -------------------------------------------------------------------------------- /modules/system-level/gui/gnome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/gnome/README.md -------------------------------------------------------------------------------- /modules/system-level/gui/gnome/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/gnome/default.nix -------------------------------------------------------------------------------- /modules/system-level/gui/hyprland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/hyprland/README.md -------------------------------------------------------------------------------- /modules/system-level/gui/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/hyprland/default.nix -------------------------------------------------------------------------------- /modules/system-level/gui/hyprland/extra-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/hyprland/extra-packages.nix -------------------------------------------------------------------------------- /modules/system-level/gui/i3wm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/i3wm/README.md -------------------------------------------------------------------------------- /modules/system-level/gui/i3wm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/i3wm/default.nix -------------------------------------------------------------------------------- /modules/system-level/gui/kde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/kde/README.md -------------------------------------------------------------------------------- /modules/system-level/gui/kde/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/gui/kde/default.nix -------------------------------------------------------------------------------- /modules/system-level/local-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/local-ai/README.md -------------------------------------------------------------------------------- /modules/system-level/local-ai/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/local-ai/default.nix -------------------------------------------------------------------------------- /modules/system-level/nvidia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/nvidia/README.md -------------------------------------------------------------------------------- /modules/system-level/nvidia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/nvidia/default.nix -------------------------------------------------------------------------------- /modules/system-level/nvidia/example.config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/nvidia/example.config.nix -------------------------------------------------------------------------------- /modules/system-level/onedrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/onedrive/README.md -------------------------------------------------------------------------------- /modules/system-level/onedrive/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/onedrive/default.nix -------------------------------------------------------------------------------- /modules/system-level/openssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/openssh/README.md -------------------------------------------------------------------------------- /modules/system-level/openssh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/openssh/default.nix -------------------------------------------------------------------------------- /modules/system-level/podman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/podman/README.md -------------------------------------------------------------------------------- /modules/system-level/podman/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/podman/default.nix -------------------------------------------------------------------------------- /modules/system-level/power-efficiency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/power-efficiency/README.md -------------------------------------------------------------------------------- /modules/system-level/power-efficiency/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/power-efficiency/default.nix -------------------------------------------------------------------------------- /modules/system-level/via/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/via/README.md -------------------------------------------------------------------------------- /modules/system-level/via/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/via/default.nix -------------------------------------------------------------------------------- /modules/system-level/wsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/wsl/README.md -------------------------------------------------------------------------------- /modules/system-level/wsl/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/system-level/wsl/default.nix -------------------------------------------------------------------------------- /modules/user-level/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/README.md -------------------------------------------------------------------------------- /modules/user-level/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/default.nix -------------------------------------------------------------------------------- /modules/user-level/docker/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/docker/default.nix -------------------------------------------------------------------------------- /modules/user-level/home-manager/.gitignore: -------------------------------------------------------------------------------- 1 | tygo-van-den-hurk -------------------------------------------------------------------------------- /modules/user-level/home-manager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/home-manager/default.nix -------------------------------------------------------------------------------- /modules/user-level/home-manager/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/home-manager/default.png -------------------------------------------------------------------------------- /modules/user-level/key-remapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/README.md -------------------------------------------------------------------------------- /modules/user-level/key-remapper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/default.nix -------------------------------------------------------------------------------- /modules/user-level/key-remapper/kmonad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/kmonad/README.md -------------------------------------------------------------------------------- /modules/user-level/key-remapper/kmonad/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/kmonad/default.nix -------------------------------------------------------------------------------- /modules/user-level/key-remapper/kmonad/kmonad.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/kmonad/kmonad.nix -------------------------------------------------------------------------------- /modules/user-level/key-remapper/xremap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/xremap/README.md -------------------------------------------------------------------------------- /modules/user-level/key-remapper/xremap/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/xremap/config.yml -------------------------------------------------------------------------------- /modules/user-level/key-remapper/xremap/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/key-remapper/xremap/default.nix -------------------------------------------------------------------------------- /modules/user-level/virtualbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/virtualbox/README.md -------------------------------------------------------------------------------- /modules/user-level/virtualbox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/modules/user-level/virtualbox/default.nix -------------------------------------------------------------------------------- /systems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/README.md -------------------------------------------------------------------------------- /systems/common-settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/common-settings.nix -------------------------------------------------------------------------------- /systems/get.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/get.nix -------------------------------------------------------------------------------- /systems/laptops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/laptops/README.md -------------------------------------------------------------------------------- /systems/laptops/common-settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/laptops/common-settings.nix -------------------------------------------------------------------------------- /systems/laptops/thinkpad/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/laptops/thinkpad/hardware-configuration.nix -------------------------------------------------------------------------------- /systems/laptops/thinkpad/overrides.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/laptops/thinkpad/overrides.nix -------------------------------------------------------------------------------- /systems/laptops/thinkpad/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/laptops/thinkpad/settings.nix -------------------------------------------------------------------------------- /systems/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/list.nix -------------------------------------------------------------------------------- /systems/recursive-merge.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/recursive-merge.nix -------------------------------------------------------------------------------- /systems/vms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/vms/README.md -------------------------------------------------------------------------------- /systems/vms/common-settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/vms/common-settings.nix -------------------------------------------------------------------------------- /systems/vms/kubernetes/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/vms/kubernetes/hardware-configuration.nix -------------------------------------------------------------------------------- /systems/vms/kubernetes/overrides.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/vms/kubernetes/overrides.nix -------------------------------------------------------------------------------- /systems/vms/kubernetes/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tygo-van-den-Hurk/NixOS/HEAD/systems/vms/kubernetes/settings.nix --------------------------------------------------------------------------------