Update home-manager config

This commit is contained in:
Tobias Reisinger 2023-03-06 13:14:37 +01:00
parent 665fcddf82
commit e7ae131ef1
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
3 changed files with 16 additions and 1 deletions

View file

@ -0,0 +1 @@
{ allowUnfree = true; }

View file

@ -1 +0,0 @@
portalo-tobias.nix

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
home.username = "tobias";
home.homeDirectory = "/home/tobias";
imports = [
./common.nix
./graphical.nix
];
}

View file

@ -8,4 +8,8 @@
./common.nix
./graphical.nix
];
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
}