add: unity
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
modules.kitty
|
||||
modules.nikpkgs
|
||||
modules.fonts
|
||||
modules.unity
|
||||
<modules/hyprland/doloro-settings>
|
||||
(modules.obs {
|
||||
audio = true;
|
||||
|
||||
@@ -3,15 +3,12 @@
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
}: {
|
||||
flake-file.inputs = {
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
};
|
||||
modules.hyprland = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
nixos = {pkgs, ...}: {
|
||||
imports = [inputs.hyprland.nixosModules.default];
|
||||
environment.systemPackages = with pkgs; [
|
||||
wayfreeze
|
||||
@@ -46,15 +43,15 @@
|
||||
# package32 = pkgs-unstable.pkgsi686Linux.mesa;
|
||||
};
|
||||
};
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
homeManager = {pkgs, ...}: {
|
||||
gtk = {
|
||||
enable = true;
|
||||
};
|
||||
# backupFileExtension = "backupHM";
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
systemd.variables = ["--all"];
|
||||
# configType = "lua";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{modules, ...}: {
|
||||
modules.unity = {
|
||||
homeManager = {pkgs, ...}: {
|
||||
home.packages = [pkgs.unityhub pkgs.alcom];
|
||||
home.file."unityExec" = {
|
||||
source = "${pkgs.unityhub}/bin/unityhub";
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user