feat: Added stuff

This commit is contained in:
uttarayan21
2024-12-06 14:31:14 +05:30
parent 27c7d5dea6
commit 18af45f09e
8 changed files with 80 additions and 16 deletions

16
deck.nix Normal file
View File

@@ -0,0 +1,16 @@
{
pkgs,
config,
...
}: {
programs = {home-manager.enable = true;};
home = {
username = "deck";
homeDirectory = "/home/deck";
packages = with pkgs; [
_1password-cli
tailscale
];
stateVersion = "24.11";
};
}