28 lines
419 B
Nix
28 lines
419 B
Nix
{
|
|
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
|
|
}
|