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

16 lines
224 B
Nix
Raw Normal View History

2023-01-29 00:57:35 +00:00
{ config, pkgs, ... }:
{
home.username = "tobias";
home.homeDirectory = "/home/tobias";
imports = [
./common.nix
./graphical.nix
];
2023-03-06 12:14:37 +00:00
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
2023-01-29 00:57:35 +00:00
}