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

View File

@@ -1,5 +1,3 @@
{...}: { {...}: {
services.tailscale = { services.tailscale.enable = true;
enable = true;
};
} }

View File

@@ -291,7 +291,7 @@
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs; inherit inputs;
}; };
modules = [{nixpkgs.config.allowUnfree = true;} ./deck.nix]; modules = [{nixpkgs.config.allowUnfree = true;} ./steamdeck];
}; };
}; };

View File

@@ -3,6 +3,7 @@
config, config,
... ...
}: { }: {
imports = [./tailscale.nix];
programs = {home-manager.enable = true;}; programs = {home-manager.enable = true;};
home = { home = {
username = "deck"; username = "deck";

6
steamdeck/tailscale.nix Normal file
View File

@@ -0,0 +1,6 @@
{
pkgs,
config,
}: {
services.tailscale.enable = true;
}