mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
dendritic: rewrote entire config
This commit is contained in:
@@ -0,0 +1,611 @@
|
||||
{ self, ... }: {
|
||||
flake.nixosModules.caelestia = { pkgs, ... }: {
|
||||
qt.enable = true;
|
||||
# to resolve this https://wiki.nixos.org/wiki/Home_Manager#I_cannot_set_GNOME_or_Gtk_themes_via_Home_Manager
|
||||
programs.dconf.enable = true;
|
||||
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
self.packages.${pkgs.system}.qtbatticon
|
||||
kdePackages.qtdeclarative # provides qmlls and other things
|
||||
quickshell # we have it but adding it there solves "WARN qt.qpa.services: Failed to register with host portal QDBusError("org.freedesktop.portal.Error.Failed", "Could not register app ID: App info not found for 'org.quickshell'")"
|
||||
];
|
||||
};
|
||||
flake.homeModules.caelestia = { ... }: let
|
||||
sisyphe = ../../assets/sisyphe.gif;
|
||||
pepe-music = ../../assets/pepe-music.gif;
|
||||
in {
|
||||
home.file.".local/state/caelestia/wallpaper/path.txt" = {
|
||||
# dummy file. Does nothing. Prevent an error
|
||||
enable = true;
|
||||
text = "${sisyphe}";
|
||||
};
|
||||
home.file.".face" = {
|
||||
# this is were caelestia will search for profiles pictures
|
||||
source = ../../assets/sisyphePFP.png;
|
||||
};
|
||||
# set profile picture in ~/.face
|
||||
programs.caelestia = {
|
||||
enable = true;
|
||||
systemd = {
|
||||
enable = false; # if we launch it form here, the keybinds don't work
|
||||
target = "graphical-session.target";
|
||||
environment = [];
|
||||
};
|
||||
settings = {
|
||||
# default config https://github.com/caelestia-dots/shell?tab=readme-ov-file#example-configuration
|
||||
appearance = {
|
||||
mediaGifSpeedAdjustment = 500;
|
||||
sessionGifSpeed = 0.7;
|
||||
anim = {
|
||||
duration = {
|
||||
scale = 1;
|
||||
};
|
||||
};
|
||||
/*
|
||||
font = {
|
||||
family = {
|
||||
clock = "Rubik"; # (TODO figure out those fonts)
|
||||
material = "Material Symboles Rounded";
|
||||
mono = "CaskaydiaCove NF";
|
||||
sans = "Rubik";
|
||||
};
|
||||
size = {
|
||||
scale = 1;
|
||||
};
|
||||
};
|
||||
*/
|
||||
padding = {
|
||||
scale = 1;
|
||||
};
|
||||
rounding = {
|
||||
scale = 1;
|
||||
};
|
||||
spacing = {
|
||||
scale = 1;
|
||||
};
|
||||
transparency = {
|
||||
enabled = false;
|
||||
base = 0.85;
|
||||
layeres = 0.4;
|
||||
};
|
||||
};
|
||||
general = {
|
||||
logo = "caelestia";
|
||||
apps = {
|
||||
terminal = ["kitty"]; # default foot
|
||||
audio = ["pavucontrol"];
|
||||
playback = ["vlc"]; # what's that?
|
||||
explorer = ["dolphin"]; # default thunar
|
||||
};
|
||||
battery = {
|
||||
wanLevels = [
|
||||
{
|
||||
level = 20;
|
||||
title = "Low battery";
|
||||
message = "You might want to plug in a charger";
|
||||
icon = "battery_android_frame_2";
|
||||
}
|
||||
{
|
||||
level = 10;
|
||||
title = "Did you see the previous message?";
|
||||
message = "You should probably plug in a charger <b>now</b>";
|
||||
icon = "battery_android_frame_1";
|
||||
}
|
||||
{
|
||||
level = 5;
|
||||
title = "Critical battery level";
|
||||
message = "PLUG THE CHARGER RIGHT NOW!!";
|
||||
icon = "battery_android_alert";
|
||||
critical = true;
|
||||
}
|
||||
];
|
||||
criticalLevel = 3;
|
||||
};
|
||||
idle = {
|
||||
lockBeforeSleep = true;
|
||||
inhibitWhenAudio = true;
|
||||
timeouts = [
|
||||
{
|
||||
timeout = 180;
|
||||
idleAction = "lock";
|
||||
}
|
||||
{
|
||||
timeout = 300;
|
||||
idleAction = "dpms off"; # what's that?
|
||||
returnAction = "dpms on";
|
||||
}
|
||||
{
|
||||
timeout = 600;
|
||||
idleAction = ["systemctl" "suspend-then-hibernate"];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
background = {
|
||||
desktopClock = {
|
||||
enabled = false;
|
||||
scale = 1.0;
|
||||
position = "bottom-right";
|
||||
shadow = {
|
||||
enabled = true;
|
||||
opacity = 0.7;
|
||||
blur = 0.4;
|
||||
};
|
||||
background = {
|
||||
enabled = false;
|
||||
opacity = 0.7;
|
||||
blur = true;
|
||||
};
|
||||
invertColors = false;
|
||||
};
|
||||
enabled = false; #default true
|
||||
visualiser = {
|
||||
blur = false;
|
||||
enabled = false;
|
||||
autohide = true;
|
||||
rounding = 1;
|
||||
spacing = 1;
|
||||
};
|
||||
};
|
||||
bar = {
|
||||
activeWindow = {
|
||||
compact = false;
|
||||
inverted = false;
|
||||
showOnHover = true;
|
||||
};
|
||||
clock = {
|
||||
background = true;
|
||||
showDate = true;
|
||||
showIcon = true;
|
||||
};
|
||||
dragThreshold = 20;
|
||||
entries = [
|
||||
{
|
||||
id = "logo";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "workspaces";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "spacer";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "activeWindow";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "spacer";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "tray";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "clock";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "statusIcon";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "power";
|
||||
enabled = true;
|
||||
}
|
||||
];
|
||||
persistent = true;
|
||||
popouts = {
|
||||
activeWindow = true;
|
||||
statusIcon = true;
|
||||
tray = true;
|
||||
};
|
||||
scrollActions = {
|
||||
brightness = true;
|
||||
workspaces = true;
|
||||
volume = true;
|
||||
};
|
||||
showOnHover = true;
|
||||
status = {
|
||||
showAudio = false;
|
||||
showBattery = false; # use powerprofile daemon
|
||||
showBluetooth = false;
|
||||
showKbLayout = false;
|
||||
showMicrophone = false;
|
||||
showNetwork = false;
|
||||
showWifi = true;
|
||||
showLockStatus = false;
|
||||
};
|
||||
tray = {
|
||||
background = true; # default true
|
||||
compact = false;
|
||||
iconSubs = [];
|
||||
recolour = true;
|
||||
};
|
||||
workspaces = {
|
||||
activeIndicator = true;
|
||||
activeLabel = "";
|
||||
activeTrail = false;
|
||||
label = " ";
|
||||
occupiedBg = false;
|
||||
occpiedLabel = "";
|
||||
perMonitorWorkspaces = true;
|
||||
showWindows = true;
|
||||
shown = 5;
|
||||
specialWorkspaceIcons = [
|
||||
{
|
||||
name = "steam";
|
||||
icon = "sports_esports";
|
||||
}
|
||||
];
|
||||
windowIcons = [
|
||||
{
|
||||
regex = "steam(_app_(default|[0-9]+))?";
|
||||
icon = "sports_esports";
|
||||
}
|
||||
];
|
||||
};
|
||||
excludedScreens = [""]; # default says "" those this work?
|
||||
};
|
||||
border = {
|
||||
rounding = 25;
|
||||
thickness = 10;
|
||||
};
|
||||
dashboard = {
|
||||
enabled = true;
|
||||
dragThreshold = 50;
|
||||
mediaUpdateInterval = 500;
|
||||
showOnHover = true;
|
||||
};
|
||||
launcher = {
|
||||
actionsPrefix = ">";
|
||||
actions = [
|
||||
{
|
||||
name = "Calculator";
|
||||
icon = "calculate";
|
||||
description = "Do simple math equations (powered by Qalc)";
|
||||
command = ["autocomplete" "calc"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Scheme";
|
||||
icon = "palette";
|
||||
description = "Change the current colour scheme";
|
||||
command = ["autocomplete" "scheme"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Wallpaper";
|
||||
icon = "image";
|
||||
description = "Change the current wallpaper";
|
||||
command = ["autocomplete" "wallpaper"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Variant"; # to remove
|
||||
icon = "colors";
|
||||
description = "Change the current scheme variant";
|
||||
command = ["autocomplete" "variant"];
|
||||
enabled = true;
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Transparency";
|
||||
icon = "opacity";
|
||||
description = "Change shell transparency";
|
||||
command = ["autocomplete" "transparency"];
|
||||
enabled = false;
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Random";
|
||||
icon = "casino";
|
||||
description = "Switch to a random wallpaper";
|
||||
command = ["caelestia" "wallpaper" "-r"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Light";
|
||||
icon = "light_mode";
|
||||
description = "Change the scheme to light mode";
|
||||
command = ["setMode" "light"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Dark";
|
||||
icon = "dark_mode";
|
||||
description = "Change the scheme to dark mode";
|
||||
command = ["setMode" "dark"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Shutdown";
|
||||
icon = "power_settings_new";
|
||||
description = "Shutdown the system";
|
||||
command = ["systemctl" "poweroff"];
|
||||
enabled = true;
|
||||
dangerous = true;
|
||||
}
|
||||
{
|
||||
name = "Reboot";
|
||||
icon = "cached";
|
||||
description = "Reboot the system";
|
||||
command = ["systemctl" "reboot"];
|
||||
enabled = true;
|
||||
dangerous = true;
|
||||
}
|
||||
{
|
||||
name = "Lock"; # does this work with ly?
|
||||
icon = "lock";
|
||||
description = "Log out of the current session";
|
||||
command = ["loginctl" "terminate-user" ""];
|
||||
enabled = true;
|
||||
dangerous = true;
|
||||
}
|
||||
{
|
||||
name = "Sleep";
|
||||
icon = "bedtime";
|
||||
description = "Suspend then hibernate";
|
||||
command = ["systemctl" "suspend-then-hibernate"];
|
||||
enabled = true;
|
||||
dangerous = false;
|
||||
}
|
||||
{
|
||||
name = "Settings";
|
||||
icon = "settings";
|
||||
description = "Configure the shell";
|
||||
command = ["caelestia" "shell" "controlCenter" "open"];
|
||||
enabled = false; # default true
|
||||
dangerous = false;
|
||||
}
|
||||
];
|
||||
dragThreshold = 50;
|
||||
vimKeybinds = false; # intersting to put to true
|
||||
enableDangerousActions = false; # set to true
|
||||
maxShown = 7;
|
||||
maxWallpapers = 9;
|
||||
specialPrefix = "@";
|
||||
useFuzzy = {
|
||||
# should try
|
||||
apps = false;
|
||||
actions = false;
|
||||
schemes = false;
|
||||
variants = false;
|
||||
wallpapers = false;
|
||||
};
|
||||
showOnHover = false;
|
||||
favouriteApps = [];
|
||||
hiddenApps = [];
|
||||
};
|
||||
lock = {
|
||||
recolourLogo = false; # what's that
|
||||
hideNotifs = false;
|
||||
};
|
||||
notifs = {
|
||||
actionOnClick = false;
|
||||
clearThreshold = 0.3;
|
||||
defaultExpireTimeout = 5000;
|
||||
expantThreshold = 20;
|
||||
openeExpanded = false;
|
||||
expire = true;
|
||||
};
|
||||
osd = {
|
||||
# thats the slider for brightness and sound
|
||||
enabled = true;
|
||||
enableBrightness = true;
|
||||
enableMicrophone = false;
|
||||
hideDelay = 2000;
|
||||
};
|
||||
paths = {
|
||||
mediaGif = pepe-music; # default "root:/assets/bongocat.gif"
|
||||
sessionGif = sisyphe; # default "root:/assets/kurukuru.gif"
|
||||
noNotifsPic = "root:/assets/dino.png";
|
||||
lockNoNotifsPic = "root:/assets/dino.png";
|
||||
wallpaperDir = "~/Pictures/Wallpapers";
|
||||
lyricsDir = "~/Music/lyrics";
|
||||
};
|
||||
services = {
|
||||
audioIncrement = 0.1;
|
||||
brightnessIncrement = 0.1;
|
||||
maxVolume = 1.0;
|
||||
defaultPlayer = "Spotify";
|
||||
gpuType = "";
|
||||
#playerAliases: [ { "from": "com.github.th_ch.youtube_music", "to": "YT Music" } ]; # how to put this into nix language?
|
||||
weatherLocation = "Lausanne";
|
||||
useFahrenheit = false;
|
||||
useFahrenheitPerformance = false;
|
||||
useTwelveHourClock = false;
|
||||
smartScheme = false; # default true
|
||||
visualisersBars = 45;
|
||||
};
|
||||
session = {
|
||||
dragThreshold = 30; # what does dragThreshold do?
|
||||
enabled = true;
|
||||
vimKeybinds = false; # maybe set to true?
|
||||
icons = {
|
||||
logout = "logout";
|
||||
shutdown = "power_settings_new";
|
||||
hibernate = "downloading"; # find a better icon
|
||||
reboot = "cached";
|
||||
};
|
||||
commands = {
|
||||
logout = ["hyprctl" "dispatch exit"];
|
||||
shutdown = ["systemctl" "poweroff"];
|
||||
hibernate = ["systemctl" "hibernate"];
|
||||
reboot = ["systemctl" "reboot"];
|
||||
};
|
||||
};
|
||||
sidebar = {
|
||||
dragThreshold = 80;
|
||||
enabled = true;
|
||||
};
|
||||
# is there a way to get some system info?
|
||||
utilities = {
|
||||
enabled = true;
|
||||
maxToasts = 4; # toats are like notification but on the botto left
|
||||
toasts = {
|
||||
audioInputChanged = true;
|
||||
audioOutputChanged = true;
|
||||
capsLockChanged = true;
|
||||
chargingChanged = true;
|
||||
configLoaded = true;
|
||||
dndChanged = true;
|
||||
gameModeChanged = true;
|
||||
kbLayoutChanged = true;
|
||||
kbLimit = true;
|
||||
numLockChanged = true;
|
||||
vpnChanged = true;
|
||||
nowPlaying = false;
|
||||
};
|
||||
};
|
||||
vpn = {
|
||||
enabled = false; # default true
|
||||
provider = [
|
||||
{
|
||||
# default example-configuration
|
||||
name = "wireguard";
|
||||
interface = "your-connection-name";
|
||||
displayName = "wireguard (Your VPN)";
|
||||
enabled = false;
|
||||
}
|
||||
];
|
||||
};
|
||||
quickToggles = [
|
||||
{
|
||||
id = "wifi";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "bluetooth";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "mic";
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "settings";
|
||||
enabled = true; # should desactivate
|
||||
}
|
||||
{
|
||||
id = "gameMode";
|
||||
enabled = true; # should remap my performance mode
|
||||
}
|
||||
{
|
||||
id = "dnd"; #do not disturb
|
||||
enabled = true;
|
||||
}
|
||||
{
|
||||
id = "vpn";
|
||||
enabled = false; # default true;
|
||||
}
|
||||
];
|
||||
};
|
||||
cli = {
|
||||
# default config https://github.com/caelestia-dots/cli?tab=readme-ov-file#configuring
|
||||
enable = true; # Also add caelestia-cli to path
|
||||
settings = {
|
||||
record = {
|
||||
extraArgs = [];
|
||||
};
|
||||
wallpaper = {
|
||||
postHook = "caelestia scheme set -n gruvbox -f soft -m dark"; # sets the theme
|
||||
};
|
||||
theme = {
|
||||
enableTerm = false; # we do it manually by adapting our kitty config
|
||||
enableHypr = false; # this seems to add the splash
|
||||
enableDiscord = true;
|
||||
enableSpicetify = true;
|
||||
enableFuzzel = true; #what's that?
|
||||
enablleBtop = false; # default true
|
||||
enableQt = true;
|
||||
};
|
||||
toggles = {
|
||||
communication = {
|
||||
discord = {
|
||||
enable = false; # default true
|
||||
match = [
|
||||
{
|
||||
class = "discord";
|
||||
}
|
||||
];
|
||||
whatsapp = {
|
||||
enable = true;
|
||||
match = [
|
||||
{
|
||||
class = "whatsapp";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
music = {
|
||||
spotify = {
|
||||
enable = false; # default true
|
||||
match = [
|
||||
{
|
||||
class = "Spotify";
|
||||
}
|
||||
{
|
||||
initialTitle = "Spotify";
|
||||
}
|
||||
{
|
||||
initialTitle = "Spotify Free";
|
||||
}
|
||||
];
|
||||
command = ["spicetify" "watch" "-s"];
|
||||
move = true;
|
||||
};
|
||||
feishin = {
|
||||
enable = true;
|
||||
match = [
|
||||
{
|
||||
class = "feishin";
|
||||
}
|
||||
];
|
||||
move = true;
|
||||
};
|
||||
};
|
||||
sysmon = {
|
||||
btop = {
|
||||
enable = true;
|
||||
match = [
|
||||
{
|
||||
class = "btop";
|
||||
title = "btop";
|
||||
workspace = {
|
||||
name = "special:sysmon";
|
||||
};
|
||||
}
|
||||
];
|
||||
command = ["foot" "-a" "btop" "-T" "btop" "fish" "-C" "exec btop"]; # maybe switch to btm and kitty?
|
||||
};
|
||||
};
|
||||
todo = {
|
||||
todoist = {
|
||||
enable = false; # default true
|
||||
match = [
|
||||
{
|
||||
class = "Todoist";
|
||||
}
|
||||
];
|
||||
command = ["todoist"];
|
||||
move = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user