Evie Litherland-Smith
5ff572a9b7
Move home/ directory under system/ directory. Remove duplicated machine-specific config files, now handled as one per host (excluding hardware-configuration directory) Move as much configuration as possible out of flake.nix and into more appropriate files (e.g. system/default.nix) Add a desktop.nix and laptop.nix for system, both will import home/desktop.nix and home/laptop.nix respectively to reduce duplication in machine-specific config files Remove games and streaming directories, moved directly into Vanguard config file Remove home/personal.nix since it ended up being empty after changes Remove old sway config since I haven't been maintaining it and this refactor will definitely break it
86 lines
2.5 KiB
Nix
86 lines
2.5 KiB
Nix
{ accentColor, progressbarAccentColor }:
|
|
{
|
|
inherit accentColor progressbarAccentColor;
|
|
adaptableDarkMode = true;
|
|
alwaysShowWorkspaces = false;
|
|
autoLaunchInBackground = false;
|
|
autoLaunchOnStart = false;
|
|
autohideMenuBar = false;
|
|
automaticUpdates = false;
|
|
beta = false;
|
|
clipboardNotifications = true;
|
|
closeToSystemTray = false;
|
|
confirmOnQuit = false;
|
|
customTodoServer = "";
|
|
darkMode = false;
|
|
downloadFolderPath = "/home/pixelifytica/Downloads";
|
|
enableGPUAcceleration = true;
|
|
enableGlobalHideShortcut = false;
|
|
enableLongPressServiceHint = false;
|
|
enableSpellchecking = true;
|
|
enableSystemTray = true;
|
|
enableTranslator = true;
|
|
fallbackLocale = "en-US";
|
|
grayscaleServicesDim = 50;
|
|
hibernateOnStartup = true;
|
|
hibernationStrategy = 300;
|
|
hideAllServicesWorkspace = false;
|
|
hideCollapseButton = false;
|
|
hideDownloadButton = false;
|
|
hideNotificationsButton = false;
|
|
hideRecipesButton = false;
|
|
hideSettingsButton = false;
|
|
hideSplitModeButton = true;
|
|
hideWorkspacesButton = false;
|
|
iconSize = 20;
|
|
inactivityLock = 0;
|
|
isAppMuted = false;
|
|
isLockingFeatureEnabled = false;
|
|
isMenuCollapsed = false;
|
|
isTodosFeatureEnabled = true;
|
|
isTwoFactorAutoCatcherEnabled = false;
|
|
keepAllWorkspacesLoaded = false;
|
|
liftSingleInstanceLock = false;
|
|
locale = "en-US";
|
|
locked = false;
|
|
lockedPassword = "";
|
|
minimizeToSystemTray = false;
|
|
navigationBarBehaviour = "custom";
|
|
navigationBarManualActive = false;
|
|
notifyTaskBarOnMessage = false;
|
|
predefinedTodoServer = "https://todoist.com/app";
|
|
privateNotifications = false;
|
|
reloadAfterResume = true;
|
|
reloadAfterResumeTime = 10;
|
|
runInBackground = true;
|
|
scheduledDNDEnabled = false;
|
|
scheduledDNDEnd = "09:00";
|
|
scheduledDNDStart = "17:00";
|
|
searchEngine = "duckDuckGo";
|
|
sentry = false;
|
|
server = "You are using Ferdium without a server";
|
|
serviceRibbonWidth = 68;
|
|
showDisabledServices = true;
|
|
showDragArea = false;
|
|
showMessageBadgeWhenMuted = true;
|
|
showServiceName = false;
|
|
sidebarServicesLocation = 0;
|
|
spellcheckerLanguage = "en-GB";
|
|
splitColumns = 3;
|
|
splitMode = false;
|
|
startMinimized = true;
|
|
translatorEngine = "LibreTranslate";
|
|
translatorLanguage = "en";
|
|
twoFactorAutoCatcherMatcher = "token, code, sms, verify";
|
|
universalDarkMode = true;
|
|
useGrayscaleServices = false;
|
|
useHorizontalStyle = false;
|
|
useSelfSignedCertificates = false;
|
|
useTouchIdToUnlock = true;
|
|
userAgentPref = "";
|
|
wakeUpHibernationSplay = true;
|
|
wakeUpHibernationStrategy = 0;
|
|
wakeUpStrategy = 300;
|
|
webRTCIPHandlingPolicy = "disable_non_proxied_udp";
|
|
}
|