feat: Changes to steamdeck configs

This commit is contained in:
uttarayan21
2025-05-04 02:19:14 +05:30
parent 3a2b8f079c
commit 90fb9bcc6b
6 changed files with 9 additions and 4 deletions

17
steamdeck/default.nix Normal file
View File

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