andrej home

This commit is contained in:
Aleksandr Lebedev 2025-08-12 22:04:33 +02:00
parent 1a495864f1
commit 3706212263
5 changed files with 29 additions and 3 deletions

View file

@ -0,0 +1,26 @@
{
lib,
pkgs,
config,
...
}:
# User information gathered by Snowfall Lib is available.
let
name = config.snowfallorg.user.name;
home = config.snowfallorg.user.home.directory;
in {
imports = lib.snowfall.fs.get-non-default-nix-files ./.;
custom = {
programs.librewolf.enable = true;
};
home = {
packages = with pkgs; [
zapzap
];
sessionVariables = {
};
stateVersion = "24.11";
};
}