My current — and always evolving — NixOS configuration files, home-manager, neovim, etc.
This is my current Window Manager — the hype Wayland kid on the block!
Environment details
Type | Program |
---|---|
Editor | NeoVim |
Launcher | Wofi |
Shell | Fish |
Status Bar | Waybar |
Terminal | Foot |
Window Manager | Hyprland |
File Manager | Nemo |
GTK Theme | Juno Ocean |
GTK Icon Theme | Beauty Line |
Terminal Font | JetBrainsMono |
XMonad will be forever in my heart — the best X window manager!
Environment details
Type | Program |
---|---|
Editor | NeoVim |
Launcher | Rofi |
Shell | Fish |
Status Bar | Polybar |
Terminal | Alacritty |
Window Manager | XMonad |
File Manager | Nautilus |
GTK Theme | Juno Ocean |
GTK Icon Theme | Beauty Line |
Terminal Font | JetBrainsMono |
My NeoVim configuration lives here: https://github.com/gvolpe/neovim-flake
Overview of the project structure
.
├── flake.nix
├── flake.lock
├── switch
├── home
├── imgs
├── lib
├── notes
├── outputs
└── system
flake.nix
: home and system configurations.switch
: helper script to build and switch home and system configurations.home
: all the user programs, services and dotfiles for different window managers.imgs
: screenshots and other images.lib
: custom nix library functions and overlays used to instantiate pkgs.notes
: cheat-sheets, docs, etc.outputs
: the Home Manager and NixOS flake outputs.system
: the NixOS configuration, settings for different laptops and window managers.
---
config:
theme: forest
---
flowchart LR
A(fa:fa-snowflake flake.nix) --> |lib| B(overlays)
B --> C(pkgs)
C --> |outputs| D(hm.nix)
C --> |outputs| E(os.nix)
D --> |wm| F(hyprland)
D --> |wm| G(xmonad)
E --> |host| H(dell-xps)
E --> |host| I(thinkpad-x1)
E --> |host| J(tongfanf-amd)
Expand to see available ouputs
$ 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]
│ ├───hyprland-hdmi-mutable: 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.5.4-patched]
├───metals: package [metals-1.4.1]
├───metals-updater: package [metals-updater-script]
├───neovim: package [neovim-0.10.2]
├───slack: package [slack-4.41.97]
└───zoom-us: package [zoom-6.0.2.4680]
As well as all the declared flake inputs.
nix flake metadata github:gvolpe/nix-config
Further installation instructions
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.
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.
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
To set up a new machine from scratch, have a look at this document.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.