diff --git a/home/yt/pancake.nix b/home/yt/pancake.nix new file mode 100644 index 0000000..9bec866 --- /dev/null +++ b/home/yt/pancake.nix @@ -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 + ]; +}