refactor: move astal shell to its own repo

This commit is contained in:
Nickolaj Jepsen 2025-02-24 22:20:16 +01:00
parent 1bd1fdb9cf
commit 15250041b6
68 changed files with 135 additions and 8285 deletions

View file

@ -0,0 +1,15 @@
{config, inputs, pkgs, ...}: let
primaryMonitorName =
if builtins.length config.monitors > 0
then (builtins.elemAt config.monitors 0).name
else "";
in {
environment.systemPackages = [
inputs.fireproof-shell.packages.${pkgs.system}.fireproof-shell
];
programs.fireproof-shell = {
enable = true;
systemd = true;
monitor.primary = primaryMonitorName;
};
}