Home

Awesome

nix-config

ci-badge built with garnix

My current — and always evolving — NixOS configuration files, home-manager, neovim, etc.

Hyprland

This is my current Window Manager — the hype Wayland kid on the block!

hyprland

<details> <summary>Environment details</summary>
TypeProgram
EditorNeoVim
LauncherWofi
ShellFish
Status BarWaybar
TerminalFoot
Window ManagerHyprland
File ManagerNemo
GTK ThemeJuno Ocean
GTK Icon ThemeBeauty Line
Terminal FontJetBrainsMono
</details> <details> <summary>Expand to see more screenshots</summary>

hyprlock

floating

btm

nemo

binds

</details>

XMonad

XMonad will be forever in my heart — the best X window manager!

neofetch

<details> <summary>Environment details</summary>
TypeProgram
EditorNeoVim
LauncherRofi
ShellFish
Status BarPolybar
TerminalAlacritty
Window ManagerXMonad
File ManagerNautilus
GTK ThemeJuno Ocean
GTK Icon ThemeBeauty Line
Terminal FontJetBrainsMono
</details> <details> <summary>Expand to see more screenshots</summary>

cowsay

scala-dev-env

desktop

themes

demo

</details>

NeoVim

My NeoVim configuration lives here: https://github.com/gvolpe/neovim-flake

Structure

<details> <summary>Overview of the project structure</summary>
.
├── flake.nix
├── flake.lock
├── switch
├── home
├── imgs
├── lib
├── notes
├── outputs
└── system
</details>

Flake outputs

You can have a look at the available flake outputs before getting started.

$ nix flake show github:gvolpe/nix-config
├───apps
│   └───x86_64-linux
│       └───nix: app
├───homeConfigurations
│   ├───hyprland-edp: Home Manager configuration [home-manager-generation]
│   ├───hyprland-hdmi: Home Manager configuration [home-manager-generation]
│   ├───xmonad-edp: Home Manager configuration [home-manager-generation]
│   └───xmonad-hdmi: Home Manager configuration [home-manager-generation]
├───nixosConfigurations
│   ├───dell-xps: NixOS configuration [nixos-system-dell-xps-15-9560-24.11.20240620.d603719]
│   ├───thinkpad: NixOS configuration [nixos-system-thinkpad-x1-24.11.20240620.d603719]
│   └───tongfang-amd: NixOS configuration [nixos-system-tongfang-amd-24.11.20240620.d603719]
├───out
│   ├───overlays: custom instance to be used by consumers of this flake
│   └───pkgs: custom instance to be used by consumers of this flake
└───packages
    └───x86_64-linux
        ├───bazecor: package [bazecor-1.3.11-patched]
        ├───metals: package [metals-1.3.3]
        └───metals-updater: package [metals-updater-script]

As well as all the declared flake inputs.

nix flake metadata github:gvolpe/nix-config

Install

The edp-tongfang-amd configuration also contains my Home Manager configuration using the NixOS module, so it can easily be tested with a single command.

nixos-rebuild switch --flake github:gvolpe/nix-config#edp-tongfang-amd

Or you can test it directly on a QEMU virtual machine, though it has its limitations in terms of graphics.

nixos-rebuild build-vm --flake github:gvolpe/nix-config#edp-tongfang-amd
./result/bin/run-tongfang-amd-vm

Having both NixOS and Home Manager configurations combined makes it easier to quickly install it on a new machine, but my preference is to have both separate, as my Home Manager configuration changes more often than that of the NixOS one, resulting in multiple generations at boot time.

Managing the different Home Manager generations in isolation makes this way easier for me.

NixOS

The NixOS configuration can be installed by running the following command.

nixos-rebuild switch --flake github:gvolpe/nix-config#tongfang-amd

Beware that the hardware-configuration.nix file is the result of the hardware scan of the specific machine and might not be suitable for yours.

Home Manager

A fresh install requires the creation of certain directories (see what the switch script does). However, if you omit those steps, the entire HM configuration can also be built as any other flake.

nix build github:gvolpe/nix-config#homeConfigurations.xmonad-edp.activationPackage
result/activate

Fresh install

To set up a new machine from scratch, have a look at this document.