184 lines
5.8 KiB
Nix
184 lines
5.8 KiB
Nix
self: {
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (self.inputs) ags astal-tray gtk-session-lock ts-for-gir-src;
|
|
in {
|
|
config = let
|
|
inherit (lib) boolToString mkIf toLower;
|
|
|
|
# Configs
|
|
inherit (config.vars) hostName;
|
|
cfgDesktop = config.roles.desktop;
|
|
flakeDir = config.environment.variables.FLAKE;
|
|
|
|
# Packages
|
|
astalTray = astal-tray.packages.${pkgs.system}.tray;
|
|
gtkSessionLock = gtk-session-lock.packages.${pkgs.system}.default;
|
|
in
|
|
mkIf cfgDesktop.ags.enable {
|
|
# Enable pam for ags
|
|
security.pam.services.ags = {};
|
|
|
|
services.upower.enable = true;
|
|
|
|
home-manager.users.${cfgDesktop.user}.imports = [
|
|
ags.homeManagerModules.default
|
|
|
|
({
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (config.lib.file) mkOutOfStoreSymlink;
|
|
inherit (lib) hasPrefix optionals removePrefix;
|
|
|
|
configJs =
|
|
# javascript
|
|
''
|
|
Utils.execAsync('hyprpaper');
|
|
|
|
import { transpileTypeScript } from './js/utils.js';
|
|
|
|
export default (await transpileTypeScript('${hostName}')).default;
|
|
'';
|
|
|
|
agsPkg = config.programs.ags.finalPackage;
|
|
agsConfigDir = "${removePrefix "/home/${cfgDesktop.user}/" flakeDir}/nixosModules/ags";
|
|
in {
|
|
assertions = [
|
|
{
|
|
assertion = hasPrefix "/home/${cfgDesktop.user}/" flakeDir;
|
|
message = ''
|
|
Your $FLAKE environment variable needs to point to a directory in
|
|
the main users' home to use the AGS module.
|
|
'';
|
|
}
|
|
];
|
|
|
|
programs.ags = {
|
|
enable = true;
|
|
extraPackages = [
|
|
astalTray
|
|
gtkSessionLock
|
|
];
|
|
};
|
|
|
|
home = {
|
|
file = let
|
|
inherit (import "${self}/lib" {inherit pkgs;}) buildNodeModules;
|
|
|
|
mkType = package: girName: {
|
|
"${agsConfigDir}/config/types/@girs/${toLower girName}".source =
|
|
pkgs.callPackage
|
|
./mk-types {
|
|
inherit ts-for-gir-src package girName;
|
|
};
|
|
};
|
|
in (
|
|
{
|
|
# Generated types
|
|
"${agsConfigDir}/config/types" = {
|
|
source = "${agsPkg}/share/com.github.Aylur.ags/types";
|
|
recursive = true; # To add other types inside the folder
|
|
};
|
|
}
|
|
// (mkType gtkSessionLock "GtkSessionLock-0.1")
|
|
// (mkType astalTray "AstalTray-0.1")
|
|
// {
|
|
# Out of store symlinks
|
|
".config/ags".source = mkOutOfStoreSymlink "${flakeDir}/nixosModules/ags/config";
|
|
|
|
# Generated JavaScript files
|
|
"${agsConfigDir}/config/config.js".text = configJs;
|
|
"${agsConfigDir}/config/ts/lockscreen/vars.ts".text =
|
|
# javascript
|
|
''
|
|
export default {
|
|
mainMonitor: '${cfgDesktop.mainMonitor}',
|
|
dupeLockscreen: ${boolToString cfgDesktop.displayManager.duplicateScreen},
|
|
hasFprintd: ${boolToString (hostName == "wim")},
|
|
};
|
|
'';
|
|
|
|
"${agsConfigDir}/config/node_modules".source =
|
|
buildNodeModules ./config "sha256-Jt7HRrQ8xrpkku51zFbJ44IgPaKKXerZBJUyjo5VudQ=";
|
|
}
|
|
// (import ./icons.nix {inherit pkgs agsConfigDir;})
|
|
);
|
|
|
|
packages =
|
|
[
|
|
(pkgs.callPackage ./clipboard {})
|
|
# TODO: replace with matugen
|
|
self.packages.${pkgs.system}.coloryou
|
|
]
|
|
++ (builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
dart-sass
|
|
bun
|
|
playerctl
|
|
pavucontrol # TODO: replace with ags widget
|
|
;
|
|
})
|
|
++ (optionals cfgDesktop.isTouchscreen (builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
lisgd
|
|
ydotool
|
|
;
|
|
}));
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
settings = {
|
|
animations = {
|
|
bezier = [
|
|
"easeInOutBack, 0.68, -0.6, 0.32, 1.6"
|
|
];
|
|
|
|
animation = [
|
|
"fadeLayersIn, 0"
|
|
"fadeLayersOut, 1, 3000, default"
|
|
"layers, 1, 8, easeInOutBack, slide left"
|
|
];
|
|
};
|
|
|
|
layerrule = [
|
|
"noanim, ^(?!win-).*"
|
|
|
|
# Lockscreen blur
|
|
"blur, ^(blur-bg.*)"
|
|
"ignorealpha 0.19, ^(blur-bg.*)"
|
|
];
|
|
|
|
exec-once = [
|
|
"ags"
|
|
"sleep 3; ags -r 'App.openWindow(\"win-applauncher\")'"
|
|
];
|
|
|
|
bind = [
|
|
"$mainMod SHIFT, E , exec, ags -t win-powermenu"
|
|
"$mainMod , D , exec, ags -t win-applauncher"
|
|
"$mainMod , V , exec, ags -t win-clipboard"
|
|
" , Print, exec, ags -t win-screenshot"
|
|
];
|
|
binde = [
|
|
## Brightness control
|
|
", XF86MonBrightnessUp , exec, ags -r 'Brightness.screen += 0.05'"
|
|
", XF86MonBrightnessDown, exec, ags -r 'Brightness.screen -= 0.05'"
|
|
];
|
|
bindn = [" , Escape , exec, ags -r 'closeAll()'"];
|
|
bindr = ["CAPS, Caps_Lock, exec, ags -r 'Brightness.fetchCapsState()'"];
|
|
};
|
|
};
|
|
})
|
|
];
|
|
};
|
|
|
|
# For accurate stack trace
|
|
_file = ./default.nix;
|
|
}
|