dotfiles/homes/ae/default.nix

23 lines
328 B
Nix
Raw Normal View History

2025-02-19 12:14:25 +10:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
nixpkgs = {
config.allowUnfree = false;
};
home = {
username = "ae";
homeDirectory = "/home/ae";
};
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
home.stateVersion = "24.11"; # DO NOT MODIFY
}