many changes, too lazy to explain

This commit is contained in:
do butterflies cry? 2026-02-20 02:18:03 +10:00
parent 751114b041
commit fe2ec6a298
24 changed files with 207 additions and 103 deletions

28
homes/cry/default.nix Normal file
View file

@ -0,0 +1,28 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
nixpkgs = {
config.allowUnfree = false;
};
imports = [
../modules/fish.nix
../modules/bat.nix
../modules/btop.nix
];
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
}