From f10401c1870316ee91b215f284235cd6aa2ed594 Mon Sep 17 00:00:00 2001 From: cy Date: Fri, 24 Jan 2025 15:36:15 -0500 Subject: [PATCH] init Signed-off-by: cy --- home/yt/pancake.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/yt/pancake.nix 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 + ]; +}