mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
Jo
339bd28d1d
feat: added new ssh configuration modules for home-manager feat: add user work with configurations for my work environment feat: added gaming user with configuration for my gaming enviornment eg. lutris and steam Signed-off-by: Jo <johannesreckers2006@gmail.com>
39 lines
601 B
Nix
39 lines
601 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
outputs,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./desktop/plasma.nix
|
|
outputs.homeManagerModules.development.ssh
|
|
];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
|
|
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
username = "work";
|
|
homeDirectory = "/home/work";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
jetbrains.phpstorm
|
|
thunderbird
|
|
teams-for-linux
|
|
enpass
|
|
vscodium
|
|
];
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|