Files
dotfiles/steamdeck/default.nix
uttarayan21 7133046a8b feat: Use deploy-rs
Signed-off-by: uttarayan21 <email@uttarayan.me>
2025-05-04 02:38:07 +05:30

21 lines
334 B
Nix

{
pkgs,
config,
...
}: {
imports = [
./tailscale.nix
];
programs = {home-manager.enable = true;};
home = {
username = "deck";
homeDirectory = "/home/deck";
packages = with pkgs; [
_1password-cli
tailscale
(nixvim.makeNixvim (import ../neovim))
];
stateVersion = "24.11";
};
}