Signed-off-by: cy <cy@cy7.sh>
This commit is contained in:
cy 2025-01-24 15:36:15 -05:00
parent 5e3715f8f7
commit f10401c187

21
home/yt/pancake.nix Normal file
View file

@ -0,0 +1,21 @@
{
pkgs,
...
}:
{
imports = [
./common.nix
];
home = {
username = "yt";
homeDirectory = "/home/yt";
stateVersion = "25.05";
};
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
attic-server
];
}