dotfiles/homes/ae/default.nix

29 lines
419 B
Nix
Raw Normal View History

2025-02-19 12:14:25 +10:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
nixpkgs = {
config.allowUnfree = false;
};
2025-08-02 22:45:40 +10:00
imports = [
../modules/fish.nix
../modules/bat.nix
../modules/btop.nix
];
2025-02-19 12:14:25 +10:00
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
}