refactor(devices): rearrange some files to prepare for nas

This commit is contained in:
matt1432 2024-02-17 20:45:06 -05:00
parent 83afadfe78
commit a572a13f04
23 changed files with 24 additions and 18 deletions
common
modules
pkgs/rars-flatlaf

View file

@ -8,7 +8,7 @@
name = "rebuild-no-cache";
runtimeInputs = [config.nh.package];
text = ''
nh os switch -- --option binary-caches "https://cache.nixos.org" "$@"
nh os switch -- --option binary-caches "https://cache.nixos.org" "$@"
'';
})
];

View file

@ -28,12 +28,13 @@ stdenvNoCC.mkDerivation rec {
runtimeInputs = [hyprland];
text = "(sleep 1; hyprctl dispatch togglefloating) & ${name}";
};
in makeDesktopItem {
name = "RARS";
desktopName = "RARS";
exec = "${execScript}/bin/execScript";
icon = name;
};
in
makeDesktopItem {
name = "RARS";
desktopName = "RARS";
exec = "${execScript}/bin/execScript";
icon = name;
};
nativeBuildInputs = [makeWrapper rsync jre];