Switch to unstable

This commit is contained in:
Paul-Henri Froidmont 2024-10-13 22:52:21 +02:00
parent d23beebddf
commit 683972662b
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
16 changed files with 93 additions and 117 deletions

View file

@ -23,7 +23,7 @@ in
config = lib.mkIf config.modules.desktop.wm.enable {
fonts = {
packages = with pkgs.unstable; [
packages = with pkgs; [
corefonts # Microsoft free fonts
noto-fonts-emoji
meslo-lg
@ -151,7 +151,7 @@ in
sessionVariables.EDITOR = "vim";
packages =
(with pkgs.unstable; [
(with pkgs; [
brave
ungoogled-chromium
mullvad-browser

View file

@ -17,7 +17,7 @@ in
programs.yazi = {
enable = true;
package = pkgs.unstable.yazi;
package = pkgs.yazi;
enableZshIntegration = true;
settings = {
manager = {
@ -73,7 +73,7 @@ in
};
home = {
packages = with pkgs.unstable; [
packages = with pkgs; [
ffmpegthumbnailer
unar
poppler

View file

@ -37,7 +37,7 @@ in
};
};
};
home.packages = with pkgs.unstable; [ grim ];
home.packages = [ pkgs.grim ];
};
};

View file

@ -28,7 +28,7 @@ in
"ctrl+shift+semicolon" = "scroll_to_prompt 1";
"ctrl+shift+t" = "new_tab_with_cwd";
};
theme = "Gruvbox Dark";
themeFile = "gruvbox-dark";
};
};
};

View file

@ -39,11 +39,11 @@ in
gtk = {
enable = true;
cursorTheme = {
package = pkgs.unstable.paper-icon-theme;
package = pkgs.paper-icon-theme;
name = "Paper";
};
theme = {
package = pkgs.unstable.adw-gtk3;
package = pkgs.adw-gtk3;
name = "adw-gtk3";
};
iconTheme = {
@ -63,7 +63,7 @@ in
home = {
pointerCursor = {
package = pkgs.unstable.paper-icon-theme;
package = pkgs.paper-icon-theme;
name = "Paper";
size = 24;
gtk.enable = true;

View file

@ -28,7 +28,7 @@ in
platformTheme.name = "gtk";
style = {
name = "adwaita-dark";
package = pkgs.unstable.adwaita-qt;
package = pkgs.adwaita-qt;
};
};
};

View file

@ -116,7 +116,6 @@ in
wayland.windowManager.hyprland = {
enable = true;
# package = pkgs.unstable.hyprland;
systemd.enable = true;
xwayland.enable = true;
settings = {
@ -417,7 +416,7 @@ in
};
home = {
packages = with pkgs.unstable; [
packages = with pkgs; [
wlr-randr
wl-clipboard
wdisplays
@ -486,7 +485,7 @@ in
];
};
hardware.opengl.enable = true;
hardware.graphics.enable = true;
security.pam.services.swaylock = { };