plasma is working adequetaly for me

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-07 16:33:05 -06:00
parent a0722e229c
commit 542f2bf033
22 changed files with 8386 additions and 165 deletions

View file

@ -14,7 +14,7 @@
initial_window_height = "55c"; initial_window_height = "55c";
# Remove window borders # Remove window borders
hide_window_decorations = "titlebar-only"; hide_window_decorations = "yes";
tab_title_template = "none"; tab_title_template = "none";
active_tab_title_template = "none"; active_tab_title_template = "none";
draw_minimal_borders = "yes"; draw_minimal_borders = "yes";

View file

@ -23,11 +23,10 @@ in
jetbrainsMonoFont jetbrainsMonoFont
] ]
# TODO verify if these are needed/working # TODO verify if these are needed/working
# ++ (with pkgs; [ ++ (with pkgs; [
# ipafont ipafont
# kochi-substitute kochi-substitute
# noto-fonts-cjk-sans # Or another CJK font noto-fonts-cjk-sans # Or another CJK font
# ]) ]);
;
}; };
} }

View file

@ -119,7 +119,8 @@ in
wireplumber.enable = true; wireplumber.enable = true;
}; };
services.power-profiles-daemon.enable = true; # TODO revisit
# services.power-profiles-daemon.enable = true;
# Wayland-friendly Electron/Chromium # Wayland-friendly Electron/Chromium
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
@ -199,12 +200,12 @@ in
(mkIf cfg.gpu.amd.enable { (mkIf cfg.gpu.amd.enable {
services.xserver.videoDrivers = [ "amdgpu" ]; services.xserver.videoDrivers = [ "amdgpu" ];
hardware.graphics.extraPackages = with pkgs; [ hardware.graphics.extraPackages = with pkgs; [
vaapiVdpau libva-vdpau-driver
libvdpau-va-gl libvdpau-va-gl
]; ];
hardware.graphics.extraPackages32 = with pkgs.pkgsi686Linux; [ hardware.graphics.extraPackages32 = with pkgs.pkgsi686Linux; [
libva libva
vaapiVdpau libva-vdpau-driver
libvdpau-va-gl libvdpau-va-gl
]; ];
environment.systemPackages = optionals cfg.gpu.amd.useAmdvlk [ pkgs.amdvlk ]; environment.systemPackages = optionals cfg.gpu.amd.useAmdvlk [ pkgs.amdvlk ];

View file

@ -1,10 +1,311 @@
{ ... }: {
osConfig,
lib,
...
}:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
in
{ {
imports = [ imports = [
./plasma.nix
./shortcuts.nix ./shortcuts.nix
./panel.nix
./theme.nix
./autostart.nix
]; ];
options = { };
config = mkIf cfg.enable {
programs.feh.enable = true; # Image preview
programs.plasma = {
enable = true;
immutableByDefault = true;
overrideConfig = true;
desktop = {
mouseActions = {
leftClick = null;
middleClick = "contextMenu";
rightClick = "contextMenu";
};
widgets = [
# {
# plasmusicToolbar = {
# background = "transparentShadow";
# position = {
# horizontal = 51;
# vertical = 300;
# };
# size = {
# height = 400;
# width = 250;
# };
# };
# }
];
};
fonts = {
fixedWidth = {
family = "JetBrainsMono Nerd Font Mono";
pointSize = 11;
};
# general = {
# family = "";
# pointSize = 11;
# };
};
input = {
keyboard = {
layouts = [
{ layout = "us"; }
];
options = [ "caps:escape" ];
};
mice = [
# {
# acceleration = 0.5;
# accelerationProfile = "none";
# enable = true;
# leftHanded = false;
# middleButtonEmulation = false;
# name = "Logitech G403 HERO Gaming Mouse";
# naturalScroll = false;
# productId = "c08f";
# scrollSpeed = 1;
# vendorId = "046d";
# }
];
touchpads = [
# {
# disableWhileTyping = true;
# enable = true;
# leftHanded = true;
# middleButtonEmulation = true;
# name = "PNP0C50:00 0911:5288 Touchpad";
# naturalScroll = true;
# pointerSpeed = 0;
# productId = "21128";
# tapToClick = true;
# vendorId = "2321";
# }
];
};
krunner = {
activateWhenTypingOnDesktop = true;
historyBehavior = "enableAutoComplete";
position = "center";
shortcuts = {
launch = "Meta+Space";
runCommandOnClipboard = "Meta+Shift+Space";
};
};
kscreenlocker = {
appearance = {
alwaysShowClock = true;
showMediaControls = true;
wallpaper = [
../../../hosts/_shared_assets/wallpapers/pixel_night.png
../../../hosts/_shared_assets/wallpapers/pixel_night_v.png
];
# wallpaperPlainColor = "0,64,174,256";
};
autoLock = false;
lockOnResume = true;
lockOnStartup = false;
passwordRequired = true;
timeout = 5;
};
kwin = {
borderlessMaximizedWindows = true;
cornerBarrier = false;
edgeBarrier = 50;
effects = {
blur.enable = false;
desktopSwitching = {
animation = "off";
navigationWrapping = true;
};
dimInactive.enable = false;
fallApart.enable = false;
hideCursor = {
enable = true;
hideOnInactivity = 10;
hideOnTyping = true;
};
shakeCursor.enable = false;
snapHelper.enable = true;
translucency.enable = false;
windowOpenClose.animation = "off";
wobblyWindows.enable = false;
};
nightLight.enable = false;
scripts = {
polonium.enable = false;
};
# TODO these are not showing in pager for some reason? Set right?
virtualDesktops = {
names = [
""
""
""
""
""
""
""
""
""
];
rows = 1;
};
};
panels = [
{
location = "top";
alignment = "left";
lengthMode = "fit";
height = 24;
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
floating = true;
hiding = "normalpanel";
screen = "all";
widgets = [
{
name = "org.dhruv8sh.kara";
config = {
general = {
spacing = 3;
type = 1;
};
type2 = {
fixedLen = 25;
labelSource = 1;
};
};
}
];
}
{
location = "top";
alignment = "center";
lengthMode = "fit";
height = 24;
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
floating = true;
hiding = "normalpanel";
screen = "all";
widgets = [
"org.kde.plasma.digitalclock"
];
}
{
location = "top";
alignment = "right";
lengthMode = "fit";
height = 24;
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
floating = true;
hiding = "normalpanel";
screen = "all";
widgets = [
"org.kde.plasma.systemtray"
];
}
{
location = "bottom";
alignment = "center";
lengthMode = "fit";
height = 30;
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
floating = true;
hiding = "dodgewindows";
widgets = [
"org.kde.plasma.kickoff"
"org.kde.plasma.icontasks"
];
}
];
powerdevil = {
AC = {
autoSuspend.action = "nothing";
dimDisplay.enable = false;
dimKeyboard.enable = false;
inhibitLidActionWhenExternalMonitorConnected = true;
powerButtonAction = "turnOffScreen";
powerProfile = "performance";
whenLaptopLidClosed = "turnOffScreen";
};
battery = {
autoSuspend.action = "nothing";
dimDisplay.enable = false;
dimKeyboard.enable = false;
inhibitLidActionWhenExternalMonitorConnected = true;
powerButtonAction = "turnOffScreen";
powerProfile = "balanced";
whenLaptopLidClosed = "sleep";
};
batteryLevels = {
criticalAction = "shutDown";
criticalLevel = 3;
lowLevel = 15;
};
lowBattery.autoSuspend.action = "nothing";
general = {
pausePlayersOnSuspend = true;
};
};
session = {
general.askForConfirmationOnLogout = false;
sessionRestore = {
excludeApplications = [ ];
restoreOpenApplicationsOnLogin = "onLastLogout";
};
};
# Window rules for specific applications
window-rules = [
{
description = "Kitty - No window decorations";
match = {
window-class = {
value = "kitty";
type = "exact";
};
};
apply = {
noborder = {
value = true;
apply = "force"; # Force this setting
};
};
}
];
windows = {
allowWindowsToRememberPositions = true;
};
workspace = {
enableMiddleClickPaste = true;
clickItemTo = "open";
colorScheme = "BreezeDark";
lookAndFeel = "org.kde.breezedark.desktop";
theme = "breeze-dark";
cursor.theme = "breeze_cursors";
wallpaper = [
../../../hosts/_shared_assets/wallpapers/pixel_neon.png
../../../hosts/_shared_assets/wallpapers/pixel_neon_v.png
];
};
configFile = {
};
};
};
} }

View file

@ -1,41 +0,0 @@
{
osConfig,
lib,
...
}:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf mkDefault;
defaultPanel = {
location = "top";
height = 24;
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
floating = true;
hiding = "dodgewindows";
lengthMode = "fill";
widgets = [
"org.kde.plasma.kickoff"
"org.kde.plasma.pager"
"org.kde.plasma.icontasks"
#
"org.kde.plasma.marginsseparator"
#
"org.kde.plasma.systemtray"
"org.kde.plasma.networkmanagement"
"org.kde.plasma.bluetooth"
"org.kde.plasma.volume"
"org.kde.plasma.battery"
# "org.kde.plasma.powerprofiles"
"org.kde.plasma.notifications"
"org.kde.plasma.digitalclock"
"org.kde.plasma.showdesktop"
];
};
in
{
options = { };
config = mkIf cfg.enable {
programs.plasma.panels = mkDefault [ defaultPanel ];
};
}

File diff suppressed because it is too large Load diff

View file

@ -1,13 +0,0 @@
{ osConfig, lib, ... }:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
in
{
options = {};
config = mkIf cfg.enable {
programs.plasma = {
enable = true;
};
};
}

View file

@ -0,0 +1,288 @@
{
programs.plasma = {
enable = true;
shortcuts = {
ActivityManager.switch-to-activity-9886d1bd-0cae-42b3-9444-7ac12a77fdca = [ ];
"KDE Keyboard Layout Switcher"."Switch to Last-Used Keyboard Layout" = "Meta+Alt+L";
"KDE Keyboard Layout Switcher"."Switch to Next Keyboard Layout" = "Meta+Alt+K";
"com.google.Chrome"."43E6AFE50F1294FB488965B2133A305F-addSite" = [ ];
"com.google.Chrome"."43E6AFE50F1294FB488965B2133A305F-switchEngine" = [ ];
"com.google.Chrome"."43E6AFE50F1294FB488965B2133A305F-toggle" = [ ];
"com.google.Chrome"."58820AB1443C493A1A4FF301471C945D-enter-picker-mode" = [ ];
"com.google.Chrome"."58820AB1443C493A1A4FF301471C945D-enter-zapper-mode" = [ ];
"com.google.Chrome"."5F77792876DE24269A80AF2D6B769766-autofill_card" = [ ];
"com.google.Chrome"."5F77792876DE24269A80AF2D6B769766-autofill_identity" = [ ];
"com.google.Chrome"."5F77792876DE24269A80AF2D6B769766-autofill_login" = [ ];
"com.google.Chrome"."5F77792876DE24269A80AF2D6B769766-generate_password" = [ ];
"com.google.Chrome"."5F77792876DE24269A80AF2D6B769766-lock_vault" = [ ];
kaccess."Toggle Screen Reader On and Off" = "Meta+Alt+S";
kmix.decrease_microphone_volume = "Microphone Volume Down";
kmix.decrease_volume = "Volume Down";
kmix.decrease_volume_small = "Shift+Volume Down";
kmix.increase_microphone_volume = "Microphone Volume Up";
kmix.increase_volume = "Volume Up";
kmix.increase_volume_small = "Shift+Volume Up";
kmix.mic_mute = ["Microphone Mute" "Meta+Volume Mute"];
kmix.mute = "Volume Mute";
krunner."Run Command[$i]" = "Meta+Space";
ksmserver."Halt Without Confirmation" = [ ];
ksmserver."Lock Session" = ["Meta+L" "Screensaver"];
ksmserver."Log Out" = "Ctrl+Alt+Del";
ksmserver."Log Out Without Confirmation" = [ ];
ksmserver.LogOut = [ ];
ksmserver.Reboot = [ ];
ksmserver."Reboot Without Confirmation" = [ ];
ksmserver."Shut Down" = [ ];
kwin."Activate Window Demanding Attention" = "Meta+Ctrl+A";
kwin."Close Window[$i]" = "Meta+Q";
kwin."Cycle Overview" = [ ];
kwin."Cycle Overview Opposite" = [ ];
kwin."Decrease Opacity" = [ ];
kwin."Edit Tiles" = "Meta+T";
kwin.Expose = "Ctrl+F9";
kwin.ExposeAll = ["Ctrl+F10" "Launch (C)"];
kwin.ExposeClass = "Ctrl+F7";
kwin.ExposeClassCurrentDesktop = [ ];
kwin."Grid View" = "Meta+G";
kwin."Increase Opacity" = [ ];
kwin."Kill Window" = "Meta+Ctrl+Esc";
kwin."Move Tablet to Next Output" = [ ];
kwin.MoveMouseToCenter = "Meta+F6";
kwin.MoveMouseToFocus = "Meta+F5";
kwin.MoveZoomDown = [ ];
kwin.MoveZoomLeft = [ ];
kwin.MoveZoomRight = [ ];
kwin.MoveZoomUp = [ ];
kwin.Overview = "Meta+W";
kwin."Setup Window Shortcut" = [ ];
kwin."Show Desktop" = "Meta+D";
kwin."Switch One Desktop Down" = "Meta+Ctrl+Down";
kwin."Switch One Desktop Up" = "Meta+Ctrl+Up";
kwin."Switch One Desktop to the Left" = "Meta+Ctrl+Left";
kwin."Switch One Desktop to the Right" = "Meta+Ctrl+Right";
kwin."Switch Window Down" = "Meta+Alt+Down";
kwin."Switch Window Left" = "Meta+Alt+Left";
kwin."Switch Window Right" = "Meta+Alt+Right";
kwin."Switch Window Up" = "Meta+Alt+Up";
kwin."Switch to Desktop 10" = [ ];
kwin."Switch to Desktop 11" = [ ];
kwin."Switch to Desktop 12" = [ ];
kwin."Switch to Desktop 13" = [ ];
kwin."Switch to Desktop 14" = [ ];
kwin."Switch to Desktop 15" = [ ];
kwin."Switch to Desktop 16" = [ ];
kwin."Switch to Desktop 17" = [ ];
kwin."Switch to Desktop 18" = [ ];
kwin."Switch to Desktop 19" = [ ];
kwin."Switch to Desktop 1[$i]" = "Meta+1";
kwin."Switch to Desktop 20" = [ ];
kwin."Switch to Desktop 2[$i]" = "Meta+2";
kwin."Switch to Desktop 3[$i]" = "Meta+3";
kwin."Switch to Desktop 4[$i]" = "Meta+4";
kwin."Switch to Desktop 5[$i]" = "Meta+5";
kwin."Switch to Desktop 6[$i]" = "Meta+6";
kwin."Switch to Desktop 7[$i]" = "Meta+7";
kwin."Switch to Desktop 8[$i]" = "Meta+8";
kwin."Switch to Desktop 9[$i]" = "Meta+9";
kwin."Switch to Next Desktop" = [ ];
kwin."Switch to Next Screen" = [ ];
kwin."Switch to Previous Desktop" = [ ];
kwin."Switch to Previous Screen" = [ ];
kwin."Switch to Screen 0" = [ ];
kwin."Switch to Screen 1" = [ ];
kwin."Switch to Screen 2" = [ ];
kwin."Switch to Screen 3" = [ ];
kwin."Switch to Screen 4" = [ ];
kwin."Switch to Screen 5" = [ ];
kwin."Switch to Screen 6" = [ ];
kwin."Switch to Screen 7" = [ ];
kwin."Switch to Screen Above" = [ ];
kwin."Switch to Screen Below" = [ ];
kwin."Switch to Screen to the Left" = [ ];
kwin."Switch to Screen to the Right" = [ ];
kwin."Toggle Night Color" = [ ];
kwin."Toggle Window Raise/Lower" = [ ];
kwin."Walk Through Windows" = ["Meta+Tab" "Alt+Tab"];
kwin."Walk Through Windows (Reverse)" = ["Meta+Shift+Tab" "Alt+Shift+Tab"];
kwin."Walk Through Windows Alternative" = [ ];
kwin."Walk Through Windows Alternative (Reverse)" = [ ];
kwin."Walk Through Windows of Current Application" = ["Meta+`" "Alt+`"];
kwin."Walk Through Windows of Current Application (Reverse)" = ["Meta+~" "Alt+~"];
kwin."Walk Through Windows of Current Application Alternative" = [ ];
kwin."Walk Through Windows of Current Application Alternative (Reverse)" = [ ];
kwin."Window Above Other Windows" = [ ];
kwin."Window Below Other Windows" = [ ];
kwin."Window Close" = "Alt+F4";
kwin."Window Custom Quick Tile Bottom" = [ ];
kwin."Window Custom Quick Tile Left" = [ ];
kwin."Window Custom Quick Tile Right" = [ ];
kwin."Window Custom Quick Tile Top" = [ ];
kwin."Window Fullscreen" = [ ];
kwin."Window Grow Horizontal" = [ ];
kwin."Window Grow Vertical" = [ ];
kwin."Window Lower" = [ ];
kwin."Window Maximize" = "Meta+PgUp";
kwin."Window Maximize Horizontal" = [ ];
kwin."Window Maximize Vertical" = [ ];
kwin."Window Minimize" = "Meta+PgDown";
kwin."Window Move" = [ ];
kwin."Window Move Center" = [ ];
kwin."Window No Border" = [ ];
kwin."Window On All Desktops" = [ ];
kwin."Window One Desktop Down" = "Meta+Ctrl+Shift+Down";
kwin."Window One Desktop Up" = "Meta+Ctrl+Shift+Up";
kwin."Window One Desktop to the Left" = "Meta+Ctrl+Shift+Left";
kwin."Window One Desktop to the Right" = "Meta+Ctrl+Shift+Right";
kwin."Window One Screen Down" = [ ];
kwin."Window One Screen Up" = [ ];
kwin."Window One Screen to the Left" = [ ];
kwin."Window One Screen to the Right" = [ ];
kwin."Window Operations Menu" = "Alt+F3";
kwin."Window Pack Down" = [ ];
kwin."Window Pack Left" = [ ];
kwin."Window Pack Right" = [ ];
kwin."Window Pack Up" = [ ];
kwin."Window Quick Tile Bottom" = "Meta+Down";
kwin."Window Quick Tile Bottom Left" = [ ];
kwin."Window Quick Tile Bottom Right" = [ ];
kwin."Window Quick Tile Left" = "Meta+Left";
kwin."Window Quick Tile Right" = "Meta+Right";
kwin."Window Quick Tile Top" = "Meta+Up";
kwin."Window Quick Tile Top Left" = [ ];
kwin."Window Quick Tile Top Right" = [ ];
kwin."Window Raise" = [ ];
kwin."Window Resize" = [ ];
kwin."Window Shrink Horizontal" = [ ];
kwin."Window Shrink Vertical" = [ ];
kwin."Window to Desktop 10" = [ ];
kwin."Window to Desktop 11" = [ ];
kwin."Window to Desktop 12" = [ ];
kwin."Window to Desktop 13" = [ ];
kwin."Window to Desktop 14" = [ ];
kwin."Window to Desktop 15" = [ ];
kwin."Window to Desktop 16" = [ ];
kwin."Window to Desktop 17" = [ ];
kwin."Window to Desktop 18" = [ ];
kwin."Window to Desktop 19" = [ ];
kwin."Window to Desktop 1[$i]" = "Meta+Shift+1";
kwin."Window to Desktop 20" = [ ];
kwin."Window to Desktop 2[$i]" = "Meta+Shift+2";
kwin."Window to Desktop 3[$i]" = "Meta+Shift+3";
kwin."Window to Desktop 4[$i]" = "Meta+Shift+4";
kwin."Window to Desktop 5[$i]" = "Meta+Shift+5";
kwin."Window to Desktop 6[$i]" = "Meta+Shift+6";
kwin."Window to Desktop 7[$i]" = "Meta+Shift+7";
kwin."Window to Desktop 8[$i]" = "Meta+Shift+8";
kwin."Window to Desktop 9[$i]" = "Meta+Shift+9";
kwin."Window to Next Desktop" = [ ];
kwin."Window to Next Screen" = "Meta+Shift+Right";
kwin."Window to Previous Desktop" = [ ];
kwin."Window to Previous Screen" = "Meta+Shift+Left";
kwin."Window to Screen 0" = [ ];
kwin."Window to Screen 1" = [ ];
kwin."Window to Screen 2" = [ ];
kwin."Window to Screen 3" = [ ];
kwin."Window to Screen 4" = [ ];
kwin."Window to Screen 5" = [ ];
kwin."Window to Screen 6" = [ ];
kwin."Window to Screen 7" = [ ];
kwin.disableInputCapture = "Meta+Shift+Esc";
kwin.view_actual_size = "Meta+0";
kwin.view_zoom_in = ["Meta++" "Meta+="];
kwin.view_zoom_out = "Meta+-";
mediacontrol.mediavolumedown = [ ];
mediacontrol.mediavolumeup = [ ];
mediacontrol.nextmedia = "Media Next";
mediacontrol.pausemedia = "Media Pause";
mediacontrol.playmedia = [ ];
mediacontrol.playpausemedia = "Media Play";
mediacontrol.previousmedia = "Media Previous";
mediacontrol.stopmedia = "Media Stop";
org_kde_powerdevil."Decrease Keyboard Brightness" = "Keyboard Brightness Down";
org_kde_powerdevil."Decrease Screen Brightness" = "Monitor Brightness Down";
org_kde_powerdevil."Decrease Screen Brightness Small" = "Shift+Monitor Brightness Down";
org_kde_powerdevil.Hibernate = "Hibernate";
org_kde_powerdevil."Increase Keyboard Brightness" = "Keyboard Brightness Up";
org_kde_powerdevil."Increase Screen Brightness" = "Monitor Brightness Up";
org_kde_powerdevil."Increase Screen Brightness Small" = "Shift+Monitor Brightness Up";
org_kde_powerdevil.PowerDown = "Power Down";
org_kde_powerdevil.PowerOff = "Power Off";
org_kde_powerdevil.Sleep = "Sleep";
org_kde_powerdevil."Toggle Keyboard Backlight" = "Keyboard Light On/Off";
org_kde_powerdevil."Turn Off Screen" = [ ];
org_kde_powerdevil.powerProfile = ["Battery" "Meta+B"];
"plasma-manager-commands.desktop"."_k_friendly_name[$i]" = "Plasma Manager";
"plasma-manager-commands.desktop"."ringofstorms-launcher[$i]" = "Meta+Space";
"plasma-manager-commands.desktop"."ringofstorms-terminal[$i]" = "Meta+Return";
plasmashell."Slideshow Wallpaper Next Image" = [ ];
plasmashell."activate application launcher" = ["Meta" "Alt+F1"];
plasmashell."activate task manager entry 1" = [ ];
plasmashell."activate task manager entry 10" = [ ];
plasmashell."activate task manager entry 2" = [ ];
plasmashell."activate task manager entry 3" = [ ];
plasmashell."activate task manager entry 4" = [ ];
plasmashell."activate task manager entry 5" = [ ];
plasmashell."activate task manager entry 6" = [ ];
plasmashell."activate task manager entry 7" = [ ];
plasmashell."activate task manager entry 8" = [ ];
plasmashell."activate task manager entry 9" = [ ];
plasmashell.clear-history = [ ];
plasmashell.clipboard_action = "Meta+Ctrl+X";
plasmashell.cycle-panels = "Meta+Alt+P";
plasmashell.cycleNextAction = [ ];
plasmashell.cyclePrevAction = [ ];
plasmashell.edit_clipboard = [ ];
plasmashell."manage activities" = [ ];
plasmashell."next activity" = "Meta+A";
plasmashell."previous activity" = "Meta+Shift+A";
plasmashell.repeat_action = [ ];
plasmashell."show dashboard" = "Ctrl+F12";
plasmashell.show-barcode = [ ];
plasmashell.show-on-mouse-pos = "Meta+V";
plasmashell."switch to next activity" = [ ];
plasmashell."switch to previous activity" = [ ];
plasmashell."toggle do not disturb" = [ ];
"services/plasma-manager-commands.desktop".ringofstorms-launcher = [ ];
"services/plasma-manager-commands.desktop".ringofstorms-terminal = "Meta+Return";
};
configFile = {
baloofilerc.General.dbVersion = 2;
baloofilerc.General."exclude filters" = "*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.tfstate*,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,.terraform,.venv,venv,core-dumps,lost+found";
baloofilerc.General."exclude filters version" = 9;
dolphinrc.General.ViewPropsTimestamp = "2025,8,19,20,53,30.659";
dolphinrc."KFileDialog Settings"."Places Icons Auto-resize" = false;
dolphinrc."KFileDialog Settings"."Places Icons Static Size" = 22;
kactivitymanagerdrc.activities."9886d1bd-0cae-42b3-9444-7ac12a77fdca" = "Default";
kactivitymanagerdrc.main.currentActivity = "9886d1bd-0cae-42b3-9444-7ac12a77fdca";
kded5rc.Module-device_automounter.autoload = false;
kdeglobals.WM.activeBackground = "39,44,49";
kdeglobals.WM.activeBlend = "252,252,252";
kdeglobals.WM.activeForeground = "252,252,252";
kdeglobals.WM.inactiveBackground = "32,36,40";
kdeglobals.WM.inactiveBlend = "161,169,177";
kdeglobals.WM.inactiveForeground = "161,169,177";
kscreenlockerrc.Daemon."Autolock[$i]" = false;
kwalletrc.Wallet."First Use" = false;
kwinrc.Desktops.Id_1 = "1167cfb3-79e5-49ea-8fec-1dfb15afa852";
kwinrc.Desktops.Id_2 = "3bda3c4e-e7cc-4c26-81df-f6ca314b9f81";
kwinrc.Desktops.Id_3 = "8b6a2b2c-4f21-4ca5-8c27-2d0e424d0f73";
kwinrc.Desktops.Number = 3;
kwinrc.Desktops.Rows = 1;
kwinrc.Effect-overview.BorderActivate = 9;
kwinrc.Effect-overview.GridBorderActivate = 1;
kwinrc.Plugins.slideEnabled = false;
kwinrc.Tiling.padding = 4;
kwinrc."Tiling/1167cfb3-79e5-49ea-8fec-1dfb15afa852/115052cc-1eee-459f-9ccc-1825d29a7ae0".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc."Tiling/1167cfb3-79e5-49ea-8fec-1dfb15afa852/e5a3c886-11a4-49b8-981f-b1aa7afd05d7".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc."Tiling/3bda3c4e-e7cc-4c26-81df-f6ca314b9f81/115052cc-1eee-459f-9ccc-1825d29a7ae0".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc."Tiling/3bda3c4e-e7cc-4c26-81df-f6ca314b9f81/e5a3c886-11a4-49b8-981f-b1aa7afd05d7".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc."Tiling/8b6a2b2c-4f21-4ca5-8c27-2d0e424d0f73/115052cc-1eee-459f-9ccc-1825d29a7ae0".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc."Tiling/8b6a2b2c-4f21-4ca5-8c27-2d0e424d0f73/e5a3c886-11a4-49b8-981f-b1aa7afd05d7".tiles = "{\"layoutDirection\":\"horizontal\",\"tiles\":[{\"width\":0.25},{\"width\":0.5},{\"width\":0.25}]}";
kwinrc.Xwayland.Scale = 1;
plasma-localerc.Formats.LANG = "en_US.UTF-8";
};
dataFile = {
};
};
}

View file

@ -1,10 +1,20 @@
{ ... }: { osConfig, lib, ... }:
let let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
workspaces = builtins.genList (i: i + 1) 9; workspaces = builtins.genList (i: i + 1) 9;
workspaceLetters = [ "n" "m" "," "." "/" ];
kwinWorkspace = builtins.listToAttrs ( kwinWorkspace = builtins.listToAttrs (
map (i: { map (i: {
name = "Switch to Desktop ${toString i}"; name = "Switch to Desktop ${toString i}";
value = "Meta+${toString i}"; value =
let
idx = i - 1;
in
if idx < builtins.length workspaceLetters then
[ "Meta+${toString i}" "Meta+${builtins.elemAt workspaceLetters idx}" ]
else
"Meta+${toString i}";
}) workspaces }) workspaces
); );
kwinMoveWorkspace = builtins.listToAttrs ( kwinMoveWorkspace = builtins.listToAttrs (
@ -16,18 +26,30 @@ let
in in
{ {
options = { }; options = { };
config = { config = mkIf (cfg.enable) {
programs.plasma.shortcuts = ({ # Configure virtual desktops declaratively
kwin = ({ "Close Window" = "Meta+Q"; } // kwinWorkspace // kwinMoveWorkspace); programs.plasma.shortcuts = {
krunner = { kwin = {
"Run Command" = "Meta+Space"; "Window Close" = "Meta+Q";
}; "Overview" = "Meta";
}); }
// kwinWorkspace
// kwinMoveWorkspace;
plasmashell = {
"activate application launcher widget" = [ ];
};
ksmserver = {
"Lock Session" = "Meta+Shift+L";
};
};
# Custom hotkey commands
programs.plasma.hotkeys.commands = { programs.plasma.hotkeys.commands = {
ringofstorms-terminal = { terminal = {
key = "Meta+Return"; key = "Meta+Return";
command = "foot"; # TODO configurable? command = "kitty";
}; };
}; };
}; };

View file

@ -1,21 +0,0 @@
{
osConfig,
lib,
...
}:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
in
{
options = { };
config = mkIf (cfg.enable && cfg.appearance.dark.enable) {
programs.plasma = {
workspace = {
colorScheme = "Breeze Dark";
lookAndFeel = "org.kde.breezedark.desktop";
cursor.theme = "breeze_cursors";
};
};
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

154
hosts/lio/flake.lock generated
View file

@ -3,7 +3,7 @@
"agenix": { "agenix": {
"inputs": { "inputs": {
"darwin": "darwin", "darwin": "darwin",
"home-manager": "home-manager_2", "home-manager": "home-manager_3",
"nixpkgs": [ "nixpkgs": [
"secrets", "secrets",
"ragenix", "ragenix",
@ -31,11 +31,11 @@
}, },
"locked": { "locked": {
"dir": "flakes/beszel", "dir": "flakes/beszel",
"lastModified": 1764783399, "lastModified": 1764959944,
"narHash": "sha256-6d10SeMBTyogUZBiCJdzsm5+9fJ9fzYzfcKkYn5cNbQ=", "narHash": "sha256-2WeGFQviiKz51lPPL2QlB7eWDCjExm5D7FmXEIV+4SM=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "10cb42ba2109fd52c787efa1e8fc6dffab90e169", "rev": "a0722e229c758192a1ebb8d811db16e5533adae6",
"revCount": 841, "revCount": 848,
"type": "git", "type": "git",
"url": "https://git.joshuabell.xyz/ringofstorms/dotfiles" "url": "https://git.joshuabell.xyz/ringofstorms/dotfiles"
}, },
@ -63,20 +63,14 @@
}, },
"common": { "common": {
"locked": { "locked": {
"dir": "flakes/common", "path": "../../flakes/common",
"lastModified": 1764783399, "type": "path"
"narHash": "sha256-6d10SeMBTyogUZBiCJdzsm5+9fJ9fzYzfcKkYn5cNbQ=",
"ref": "refs/heads/master",
"rev": "10cb42ba2109fd52c787efa1e8fc6dffab90e169",
"revCount": 841,
"type": "git",
"url": "https://git.joshuabell.xyz/ringofstorms/dotfiles"
}, },
"original": { "original": {
"dir": "flakes/common", "path": "../../flakes/common",
"type": "git", "type": "path"
"url": "https://git.joshuabell.xyz/ringofstorms/dotfiles" },
} "parent": []
}, },
"crane": { "crane": {
"locked": { "locked": {
@ -117,6 +111,20 @@
"type": "github" "type": "github"
} }
}, },
"de_plasma": {
"inputs": {
"plasma-manager": "plasma-manager"
},
"locked": {
"path": "../../flakes/de_plasma",
"type": "path"
},
"original": {
"path": "../../flakes/de_plasma",
"type": "path"
},
"parent": []
},
"flake-utils": { "flake-utils": {
"inputs": { "inputs": {
"systems": "systems_2" "systems": "systems_2"
@ -141,11 +149,11 @@
}, },
"locked": { "locked": {
"dir": "flakes/flatpaks", "dir": "flakes/flatpaks",
"lastModified": 1764783399, "lastModified": 1764959944,
"narHash": "sha256-6d10SeMBTyogUZBiCJdzsm5+9fJ9fzYzfcKkYn5cNbQ=", "narHash": "sha256-2WeGFQviiKz51lPPL2QlB7eWDCjExm5D7FmXEIV+4SM=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "10cb42ba2109fd52c787efa1e8fc6dffab90e169", "rev": "a0722e229c758192a1ebb8d811db16e5533adae6",
"revCount": 841, "revCount": 848,
"type": "git", "type": "git",
"url": "https://git.joshuabell.xyz/ringofstorms/dotfiles" "url": "https://git.joshuabell.xyz/ringofstorms/dotfiles"
}, },
@ -157,14 +165,36 @@
}, },
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": [
"de_plasma",
"plasma-manager",
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1764776959, "lastModified": 1756579987,
"narHash": "sha256-d+5CGloq7Lo1u2SkzhF8oiOdUc6Z5emh22nTXUB9CFA=", "narHash": "sha256-duCce8zGsaMsrqqOmLOsuaV1PVIw/vXWnKuLKZClsGg=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "99a69bdf8a3c6bf038c4121e9c4b6e99706a187a",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"home-manager_2": {
"inputs": {
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1764866045,
"narHash": "sha256-0GsEtXV9OquDQ1VclQfP16cU5VZh7NEVIOjSH4UaJuM=",
"owner": "rycee", "owner": "rycee",
"repo": "home-manager", "repo": "home-manager",
"rev": "e1680d594a9281651cbf7d126941a8c8e2396183", "rev": "f63d0fe9d81d36e5fc95497217a72e02b8b7bcab",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -174,7 +204,7 @@
"type": "github" "type": "github"
} }
}, },
"home-manager_2": { "home-manager_3": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"secrets", "secrets",
@ -215,27 +245,27 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1764522689, "lastModified": 1756542300,
"narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=", "narHash": "sha256-tlOn88coG5fzdyqz6R93SQL5Gpq+m/DsWpekNFhqPQk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f", "rev": "d7600c775f877cd87b4f5a831c28aa94137377aa",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-25.11", "ref": "nixos-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1764517877, "lastModified": 1764950072,
"narHash": "sha256-pp3uT4hHijIC8JUK5MEqeAWmParJrgBVzHLNfJDZxg4=", "narHash": "sha256-BmPWzogsG2GsXZtlT+MTcAWeDK5hkbGRZTeZNW42fwA=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2d293cbfa5a793b4c50d17c05ef9e385b90edf6c", "rev": "f61125a668a320878494449750330ca58b78c557",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -249,11 +279,27 @@
"locked": { "locked": {
"lastModified": 1764522689, "lastModified": 1764522689,
"narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=", "narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "nixos", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f", "rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github" "type": "github"
}, },
"original": {
"owner": "NixOS",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1764983851,
"narHash": "sha256-y7RPKl/jJ/KAP/VKLMghMgXTlvNIJMHKskl8/Uuar7o=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "d9bc5c7dceb30d8d6fafa10aeb6aa8a48c218454",
"type": "github"
},
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-25.11", "ref": "nixos-25.11",
@ -261,7 +307,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_3": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1764776358, "lastModified": 1764776358,
"narHash": "sha256-MxXSCRiV7DI5U3Ra1UxVJTTUyKsONAE8+8QdSXsGIhA=", "narHash": "sha256-MxXSCRiV7DI5U3Ra1UxVJTTUyKsONAE8+8QdSXsGIhA=",
@ -276,7 +322,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_4": { "nixpkgs_5": {
"locked": { "locked": {
"lastModified": 1761672384, "lastModified": 1761672384,
"narHash": "sha256-o9KF3DJL7g7iYMZq9SWgfS1BFlNbsm6xplRjVlOCkXI=", "narHash": "sha256-o9KF3DJL7g7iYMZq9SWgfS1BFlNbsm6xplRjVlOCkXI=",
@ -1156,12 +1202,31 @@
"type": "github" "type": "github"
} }
}, },
"plasma-manager": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1763909441,
"narHash": "sha256-56LwV51TX/FhgX+5LCG6akQ5KrOWuKgcJa+eUsRMxsc=",
"owner": "nix-community",
"repo": "plasma-manager",
"rev": "b24ed4b272256dfc1cc2291f89a9821d5f9e14b4",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "plasma-manager",
"type": "github"
}
},
"ragenix": { "ragenix": {
"inputs": { "inputs": {
"agenix": "agenix", "agenix": "agenix",
"crane": "crane", "crane": "crane",
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs_4", "nixpkgs": "nixpkgs_5",
"rust-overlay": "rust-overlay_2" "rust-overlay": "rust-overlay_2"
}, },
"locked": { "locked": {
@ -1182,9 +1247,10 @@
"inputs": { "inputs": {
"beszel": "beszel", "beszel": "beszel",
"common": "common", "common": "common",
"de_plasma": "de_plasma",
"flatpaks": "flatpaks", "flatpaks": "flatpaks",
"home-manager": "home-manager", "home-manager": "home-manager_2",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_3",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"ros_neovim": "ros_neovim", "ros_neovim": "ros_neovim",
"secrets": "secrets" "secrets": "secrets"
@ -1192,7 +1258,7 @@
}, },
"ros_neovim": { "ros_neovim": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_4",
"nvim_plugin-Almo7aya/openingh.nvim": "nvim_plugin-Almo7aya/openingh.nvim", "nvim_plugin-Almo7aya/openingh.nvim": "nvim_plugin-Almo7aya/openingh.nvim",
"nvim_plugin-CopilotC-Nvim/CopilotChat.nvim": "nvim_plugin-CopilotC-Nvim/CopilotChat.nvim", "nvim_plugin-CopilotC-Nvim/CopilotChat.nvim": "nvim_plugin-CopilotC-Nvim/CopilotChat.nvim",
"nvim_plugin-JoosepAlviste/nvim-ts-context-commentstring": "nvim_plugin-JoosepAlviste/nvim-ts-context-commentstring", "nvim_plugin-JoosepAlviste/nvim-ts-context-commentstring": "nvim_plugin-JoosepAlviste/nvim-ts-context-commentstring",
@ -1312,11 +1378,11 @@
}, },
"locked": { "locked": {
"dir": "flakes/secrets", "dir": "flakes/secrets",
"lastModified": 1764783399, "lastModified": 1764959944,
"narHash": "sha256-6d10SeMBTyogUZBiCJdzsm5+9fJ9fzYzfcKkYn5cNbQ=", "narHash": "sha256-2WeGFQviiKz51lPPL2QlB7eWDCjExm5D7FmXEIV+4SM=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "10cb42ba2109fd52c787efa1e8fc6dffab90e169", "rev": "a0722e229c758192a1ebb8d811db16e5533adae6",
"revCount": 841, "revCount": 848,
"type": "git", "type": "git",
"url": "https://git.joshuabell.xyz/ringofstorms/dotfiles" "url": "https://git.joshuabell.xyz/ringofstorms/dotfiles"
}, },

View file

@ -6,14 +6,16 @@
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# Use relative to get current version for testing # Use relative to get current version for testing
# common.url = "path:../../flakes/common"; common.url = "path:../../flakes/common";
common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/common"; # common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/common";
# secrets.url = "path:../../flakes/secrets"; # secrets.url = "path:../../flakes/secrets";
secrets.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/secrets"; secrets.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/secrets";
# flatpaks.url = "path:../../flakes/flatpaks"; # flatpaks.url = "path:../../flakes/flatpaks";
flatpaks.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/flatpaks"; flatpaks.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/flatpaks";
# beszel.url = "path:../../flakes/beszel"; # beszel.url = "path:../../flakes/beszel";
beszel.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/beszel"; beszel.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/beszel";
de_plasma.url = "path:../../flakes/de_plasma";
# de_plasma.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/de_plasma";
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
}; };
@ -48,14 +50,20 @@
modules = [ modules = [
home-manager.nixosModules.default home-manager.nixosModules.default
inputs.de_plasma.nixosModules.default
({
ringofstorms.dePlasma = {
enable = true;
gpu.amd.enable = true;
# TODO once encrypted boot?
# sddm.autologinUser = "josh";
};
})
secrets.nixosModules.default secrets.nixosModules.default
ros_neovim.nixosModules.default ros_neovim.nixosModules.default
( ({
{ ... }:
{
ringofstorms-nvim.includeAllRuntimeDependencies = true; ringofstorms-nvim.includeAllRuntimeDependencies = true;
} })
)
flatpaks.nixosModules.default flatpaks.nixosModules.default
common.nixosModules.essentials common.nixosModules.essentials
@ -63,7 +71,7 @@
common.nixosModules.tmux common.nixosModules.tmux
common.nixosModules.boot_systemd common.nixosModules.boot_systemd
# common.nixosModules.de_sway # common.nixosModules.de_sway
common.nixosModules.de_i3 # common.nixosModules.de_i3
common.nixosModules.hardening common.nixosModules.hardening
common.nixosModules.jetbrains_font common.nixosModules.jetbrains_font
common.nixosModules.nix_options common.nixosModules.nix_options
@ -76,15 +84,12 @@
common.nixosModules.zsh common.nixosModules.zsh
beszel.nixosModules.agent beszel.nixosModules.agent
( ({
{ ... }:
{
beszelAgent = { beszelAgent = {
listen = "${overlayIp}:45876"; listen = "${overlayIp}:45876";
token = "20208198-87c2-4bd1-ab09-b97c3b9c6a6e"; token = "20208198-87c2-4bd1-ab09-b97c3b9c6a6e";
}; };
} })
)
./configuration.nix ./configuration.nix
./hardware-configuration.nix ./hardware-configuration.nix
@ -117,7 +122,7 @@
sharedModules = [ sharedModules = [
# common.homeManagerModules.de_sway # common.homeManagerModules.de_sway
common.homeManagerModules.de_i3 # common.homeManagerModules.de_i3
common.homeManagerModules.tmux common.homeManagerModules.tmux
common.homeManagerModules.atuin common.homeManagerModules.atuin
common.homeManagerModules.direnv common.homeManagerModules.direnv

View file

@ -4,7 +4,8 @@
home-manager.url = "github:rycee/home-manager/release-25.11"; home-manager.url = "github:rycee/home-manager/release-25.11";
common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/common"; common.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/common";
de_plasma.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/de_plasma"; de_plasma.url = "path:../../../../flakes/de_plasma";
# de_plasma.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/de_plasma";
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
impermanence.url = "github:nix-community/impermanence"; impermanence.url = "github:nix-community/impermanence";
@ -16,6 +17,7 @@
}@inputs: }@inputs:
let let
configurationName = "testbed"; configurationName = "testbed";
system = "x86_64-linux";
primaryUser = "luser"; primaryUser = "luser";
configLocation = "/home/${primaryUser}/.config/nixos-config/utilities/nixos-installers/examples/${configurationName}"; configLocation = "/home/${primaryUser}/.config/nixos-config/utilities/nixos-installers/examples/${configurationName}";
# configLocation = "/home/${primaryUser}/.config/nixos-config/hosts/${configurationName}"; # configLocation = "/home/${primaryUser}/.config/nixos-config/hosts/${configurationName}";
@ -25,6 +27,7 @@
nixosConfigurations = { nixosConfigurations = {
"${configurationName}" = ( "${configurationName}" = (
lib.nixosSystem { lib.nixosSystem {
inherit system;
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
}; };

View file

@ -31,6 +31,8 @@
# KDE connect specific # KDE connect specific
".config/kdeconnect" ".config/kdeconnect"
".local/state/nvim_ringofstorms_helium"
]; ];
files = [ files = [