Update home-manager config
This commit is contained in:
parent
665fcddf82
commit
e7ae131ef1
3 changed files with 16 additions and 1 deletions
1
.config/nixpkgs/config.nix
Normal file
1
.config/nixpkgs/config.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ allowUnfree = true; }
|
|
@ -1 +0,0 @@
|
||||||
portalo-tobias.nix
|
|
11
.config/nixpkgs/portable-tobias.nix
Normal file
11
.config/nixpkgs/portable-tobias.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.username = "tobias";
|
||||||
|
home.homeDirectory = "/home/tobias";
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./common.nix
|
||||||
|
./graphical.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -8,4 +8,8 @@
|
||||||
./common.nix
|
./common.nix
|
||||||
./graphical.nix
|
./graphical.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
rustdesk # remote desktop tool
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue