Compare commits
No commits in common. "840a05eed33379bdc45b7d48158f68d8d723dd6c" and "fa9e58e8950dd899024efc94aa33554305af7cfa" have entirely different histories.
840a05eed3
...
fa9e58e895
|
@ -25,6 +25,12 @@ in
|
||||||
system.stateVersion = stateVersion;
|
system.stateVersion = stateVersion;
|
||||||
networking.hostName = hostName;
|
networking.hostName = hostName;
|
||||||
|
|
||||||
|
# TESTING: Try out different GTK renderers: gl (old), ngl (new), or vulkan (new and unstable)
|
||||||
|
# See https://blog.gtk.org/2024/01/28/new-renderers-for-gtk/
|
||||||
|
environment.sessionVariables = {
|
||||||
|
"GSK_RENDERER" = "gl";
|
||||||
|
};
|
||||||
|
|
||||||
aux.system = {
|
aux.system = {
|
||||||
apps = {
|
apps = {
|
||||||
development.enable = true;
|
development.enable = true;
|
||||||
|
@ -55,8 +61,8 @@ in
|
||||||
keepassxc # Use native instead of Flatpak due to weird performance issues
|
keepassxc # Use native instead of Flatpak due to weird performance issues
|
||||||
];
|
];
|
||||||
|
|
||||||
# Keep old generations for two weeks.
|
# Keep old generations for one week.
|
||||||
retentionPeriod = "14d";
|
retentionPeriod = "7d";
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
# Run daily automatic updates.
|
# Run daily automatic updates.
|
||||||
|
|
|
@ -160,6 +160,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO: VPN (Check out Wireguard)
|
||||||
|
|
||||||
# Allow Haven to be a build target for other architectures (mainly ARM64)
|
# Allow Haven to be a build target for other architectures (mainly ARM64)
|
||||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,6 +90,9 @@ in
|
||||||
gnomeExtensions.appindicator
|
gnomeExtensions.appindicator
|
||||||
gnomeExtensions.dash-to-panel
|
gnomeExtensions.dash-to-panel
|
||||||
gnomeExtensions.forge
|
gnomeExtensions.forge
|
||||||
|
# FIXME: These two extensions are incompatible with the repo's gnome version
|
||||||
|
#gnomeExtensions.another-window-session-manager
|
||||||
|
#gnomeExtensions.random-wallpaper
|
||||||
# Themeing
|
# Themeing
|
||||||
gnome.gnome-themes-extra
|
gnome.gnome-themes-extra
|
||||||
papirus-icon-theme
|
papirus-icon-theme
|
||||||
|
|
19
modules/users/common/dash-to-panel-settings
Normal file
19
modules/users/common/dash-to-panel-settings
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
#[/org/gnome/shell/extensions/dash-to-panel/]
|
||||||
|
[/]
|
||||||
|
animate-appicon-hover=false
|
||||||
|
animate-appicon-hover-animation-extent={'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}
|
||||||
|
appicon-margin=8
|
||||||
|
appicon-padding=8
|
||||||
|
available-monitors=[0]
|
||||||
|
dot-position='BOTTOM'
|
||||||
|
hotkeys-overlay-combo='TEMPORARILY'
|
||||||
|
leftbox-padding=-1
|
||||||
|
panel-anchors='{"0":"MIDDLE"}'
|
||||||
|
panel-element-positions='{"0":[{"element":"dateMenu","visible":true,"position":"stackedTL"},{"element":"activitiesButton","visible":true,"position":"stackedTL"},{"element":"showAppsButton","visible":true,"position":"centerMonitor"},{"element":"leftBox","visible":false,"position":"stackedTL"},{"element":"taskbar","visible":true,"position":"centerMonitor"},{"element":"centerBox","visible":false,"position":"stackedBR"},{"element":"rightBox","visible":false,"position":"stackedBR"},{"element":"systemMenu","visible":true,"position":"stackedBR"},{"element":"desktopButton","visible":false,"position":"stackedBR"}]}'
|
||||||
|
panel-lengths='{"0":100}'
|
||||||
|
panel-positions='{"0":"TOP"}'
|
||||||
|
panel-sizes='{"0":64}'
|
||||||
|
primary-monitor=0
|
||||||
|
status-icon-padding=-1
|
||||||
|
tray-padding=-1
|
||||||
|
window-preview-title-position='TOP'
|
|
@ -58,5 +58,78 @@
|
||||||
"org/gnome/shell" = {
|
"org/gnome/shell" = {
|
||||||
disable-user-extensions = false;
|
disable-user-extensions = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
FIXME: Still needs work
|
||||||
|
"org/gnome/shell/extensions/dash-to-panel" = {
|
||||||
|
animate-appicon-hover = false;
|
||||||
|
animate-appicon-hover-animation-extent = {
|
||||||
|
RIPPLE = 4;
|
||||||
|
PLANK = 4;
|
||||||
|
SIMPLE = 1;
|
||||||
|
};
|
||||||
|
appicon-margin = 8;
|
||||||
|
appicon-padding = 8;
|
||||||
|
available-monitors= [0];
|
||||||
|
dot-position = "BOTTOM";
|
||||||
|
hotkeys-overlay-combo= "TEMPORARILY";
|
||||||
|
leftbox-padding = -1;
|
||||||
|
panel-anchors = {"0" = "MIDDLE"; };
|
||||||
|
panel-element-positions={
|
||||||
|
"0" = [{
|
||||||
|
"element" = "dateMenu";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "activitiesButton";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "showAppsButton";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "centerMonitor";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "leftBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "taskbar";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "centerMonitor";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "centerBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "rightBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "systemMenu";
|
||||||
|
"visible" = true;
|
||||||
|
"position"= "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "desktopButton";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
panel-lengths = { "0" = 100; };
|
||||||
|
panel-positions = { "0" = "TOP"; };
|
||||||
|
panel-sizes = { "0" = 64; };
|
||||||
|
primary-monitor = 0;
|
||||||
|
status-icon-padding = -1;
|
||||||
|
tray-padding = -1;
|
||||||
|
window-preview-title-position = "TOP";
|
||||||
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue