nixos: 25.11 -> 26.05

This commit is contained in:
2026-05-30 14:38:00 +02:00
parent 11e6661af0
commit 33174e7bc2
11 changed files with 36 additions and 40 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ _: {
# we enable system wide with nixpkgs because it offers some addon configuration. We just use this for some config
#enable = true;
theme = "dark";
sync = {
profiles."User 1".sync = {
autoSync = true;
autoSyncMediaMinutes = 10;
syncMedia = true;
+4 -3
View File
@@ -5,7 +5,7 @@
...
}: {
environment.systemPackages = with pkgs; [
swww #wallpaper daemon
awww #wallpaper daemon
gruvbox-gtk-theme
hyprcursor
capitaine-cursors-themed # cursor theme
@@ -60,6 +60,7 @@
#pkgs-unstable.hyprlandPlugins.hyprspace # currently broken
#pkgs-unstable.hyprlandPlugins.hypr-dynamic-cursors # currently broken
];
wayland.windowManager.hyprland.configType = "hyprlang";
wayland.windowManager.hyprland.settings = {
"$mod" = "SUPER";
"$term" = "kitty";
@@ -260,8 +261,8 @@
"custom-batterywarning"
#"birdtray" # thunderbird tray app # curently broken
#wallpapers/b
"swww img ${wallpaper}"
"swww-daemon"
"awww img ${wallpaper}"
"awww-daemon"
"sleep 1 && custom-wallpaper"
"custom-checkKdrive && custom-mountkdrive" # checks if the remote works and mount it
#"waybar"
+6 -6
View File
@@ -49,7 +49,7 @@ _: {
name = "custom-wallpaper";
runtimeInputs = with pkgs; [
socat
swww
awww
];
text = ''
handle() {
@@ -60,19 +60,19 @@ _: {
workspace="''${str:$i:1}"
case $workspace in
1 | 6)
swww img -t none ${wallpaper1}
awww img -t none ${wallpaper1}
;;
2 | 7)
swww img -t none ${wallpaper2}
awww img -t none ${wallpaper2}
;;
3 | 8)
swww img -t none ${wallpaper3}
awww img -t none ${wallpaper3}
;;
4 | 9)
swww img -t none ${wallpaper4}
awww img -t none ${wallpaper4}
;;
5 | 10 | 0)
swww img -t none ${wallpaper5}
awww img -t none ${wallpaper5}
;;
esac
;;
+3 -1
View File
@@ -1,6 +1,8 @@
_: {
flake.homeModules.neovim = {pkgs-unstable, ...}: {
programs.neovim = {
withRuby = false;
withPython3 = false;
enable = true;
vimAlias = false;
viAlias = false;
@@ -63,7 +65,7 @@ _: {
pkgs-unstable.vimPlugins.better-diagnostic-virtual-text
pkgs-unstable.vimPlugins.garbage-day-nvim
];
extraLuaConfig = ''
initLua = ''
local vim = vim
+9 -8
View File
@@ -3,19 +3,20 @@ _: {
programs.ssh = {
enable = true;
enableDefaultConfig = false; # will be removed in the futur. Removes evaluation warning
matchBlocks."*" = {
/*settings = {
# equivalent to the default config
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
#forwardAgent = false;
# give errors in home-manager 26.05
#addKeysToAgent = "no";
#compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
#controlMaster = "no";
#controlPath = "~/.ssh/master-%r@%n:%p";
#controlPersist = "no";
};*/
};
services.ssh-agent.enable = true;
home.file.".ssh/config".text = ''