Dendritic flake-parts + import tree based config, should be cleaner and more managable than my old config.
base.nix is universal configuration across all hosts, sets up essential and QoL system configuration such as enabling nvim, git and ssh.
user.nix sets up userspace for one user selected in the active host module. (Also essential and universal across all hosts)
Essential configuration of system, session and environment.
Host machine configurations, including special configs and presets for desktop setups.
Home manager and nixos based program configuration modules.
Services config for various purposes.
Boilerplate for nixosModules:
{ self, inputs, ... }:
{
flake.nixosModules.MODULENAME =
{userconf, pkgs, ...}:
{
# Your config here
home-manager.users.${userconf.username} = {
# Your homemanager config here
};
};
}This system is meant for one single user and user configuration relies on ./lib/sofushl.nix
userconf includes several parts from ./lib defined in.modules/hosts/* and a secret part:
Make /etc/nixos/secrets.nix like this:
{
email = "youremail@example.com"; # Email for automated mails and login
password = "yourpassword"; # High security online logins
pin = "yourpin"; # Root and user login on this device
dnsUpdateLinks = [
"yourUpdateLink1"
]; # for freedns dynamic ip updater cron job
networks = {
"ssid1" = "password1";
}; # for declarative wifi management
secretDom = "yoursecretdomain";
}All non nix files used for the config is in ./dotfiles/.
sudo loadkeys no
nmtui
sudo git clone https://github.com/sofuslind/nixos.git
# If you didn't make the config beforehand, make it now:
sudo mkdir nixos/modules/hosts/YOUR_HOST
cd nixos/modules/hosts/YOUR_HOST
sudo nixos-generate-config --no-filesystems --dir .
# Otherwise, just generate hardware configuration:
sudo mkdir hardware-tmp
sudo nixos-generate-config --no-filesystems --dir ./hardware-tmp
sudo mv ./hardware-tmp/hardware-configuration.nix ./hardware.nix
# Lastly make secrets.nix run and run the installer
sudo vi /etc/nixos/secrets.nix # You will have to remake this when in the system
cd /nixos
# Remember to update ./lib/YOUR_HOST.nix before and after installing
sudo nix --extra-experimental-features "nix-command flakes" \
run 'github:nix-community/disko/latest#disko-install' -- \
--flake .#YOUR_HOST --impure \
--disk main /dev/YOUR_DISK \
# After rebooting:
ssh-keygen
cat .ssh/id_ed25519.pub
# Add to github and clone the repo
git clone git@github.com:sofuslind/nixos.git # My link
# Update ./lib/YOUR_HOST.nix and ./lib/sshkeys.nix and
# Rebuild to make sure you did everything right
nixos-build
Using a simple nixos configuration you can make a ultra bare bones nix config with the sole purpose of rebuilding into a different system. This is an old and weird way to go about doing things in nix, which is why I moved it into the bottom of my README file. This example of shell commands is intended for when you have windows installed (without recovery partition) and already have established an xfs linux partition on the 4th partition. The example is quite niche but I'm replacing it with disko anyway...
# Keyboard layout
sudo loadkeys no
# Network setup
nmtui
# Format partition (replace with your designated linux partition)
# Note that this needs to be set up beforehand with parted or similar.
sudo mkfs.xfs /dev/nvme0n1p4 -L ROOT
# Mount
sudo mount /dev/disk/by-label/ROOT /mnt
sudo mkdir -p /mnt/boot
sudo mount /dev/disk/by-label/BOOT /mnt/boot
sudo nixos-generate-config --root /mnt
# Apply config
sudo git clone https://github.com/sofuslind/nixos.git
sudo rm /mnt/etc/nixos/configuration.nix
cat /nixos/README.md
# get the configuration into /mnt/etc/configuration.nix
sudo vi /mnt/etc/nixos/configuration.nix
# Install
cd /mnt
sudo nixos-install{
imports = [ ./hardware-configuration.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
console.keyMap = "no";
users.users.root.initialPassword = "p";
users.users.sofushl = {
isNormalUser = true;
initialPassword = "p";
extraGroups = [
"wheel"
"networkmanager"
];
};
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
programs.git.enable = true;
programs.nix-ld.enable = true;
system.stateVersion = "25.11";
}