mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 02:13:06 +01:00
43 lines
705 B
Nix
43 lines
705 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./desktop/plasma.nix
|
|
];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
|
|
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
};
|
|
|
|
# Username and home directory
|
|
home = {
|
|
username = "gaming";
|
|
homeDirectory = "/home/gaming";
|
|
};
|
|
|
|
# General packages
|
|
home.packages = with pkgs; [
|
|
lutris
|
|
vesktop
|
|
steam
|
|
lunar-client
|
|
];
|
|
|
|
# Enable home-manager
|
|
programs.home-manager.enable = true;
|
|
|
|
# Nicely reload system units when changing configs
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|