This commit is contained in:
kenji
2025-07-14 22:42:32 -05:00
parent e9c69c2cc1
commit dd36c2711a
6 changed files with 377 additions and 65 deletions
+14
View File
@@ -0,0 +1,14 @@
{
inputs,
pkgs,
...
}: {
imports = [
inputs.caelestia-shell.nixosModules.default
];
servies.caelestia-shell = {
enable = true;
config = {
};
};
}
+11 -4
View File
@@ -1,4 +1,8 @@
{pkgs, ...}: let
{
pkgs,
inputs,
...
}: let
caelestia-shell = pkgs.fetchFromGitHub {
owner = "caelestia-dots";
repo = "shell";
@@ -6,7 +10,10 @@
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
};
in {
imports = [
];
home.packages = with pkgs; [
fuzzel
inotify-tools
app2unit
quickshell
@@ -26,7 +33,7 @@ in {
curl
material-symbols
];
home.file.".config/quickshell" = {
source = caelestia-shell;
};
# home.file.".config/quickshell/caelestia" = {
# source = caelestia-shell;
# };
}