.dotfiles/.config/home-manager/portalo-tobias.nix

17 lines
239 B
Nix

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