.dotfiles/.config/nixpkgs/portalo-tobias.nix

15 lines
224 B
Nix

{ config, pkgs, ... }:
{
home.username = "tobias";
home.homeDirectory = "/home/tobias";
imports = [
./common.nix
./graphical.nix
];
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
}