fix: thunderbird & sway
Fix problems with sway & thunderbird configs. For some reason thunderbird doesn't like the profile name to be specified.
This commit is contained in:
parent
d89eb790b1
commit
e9371c3a15
4 changed files with 9 additions and 19 deletions
|
@ -2,17 +2,11 @@
|
||||||
, ... }:
|
, ... }:
|
||||||
let scripts = import ./scripts { inherit pkgs; };
|
let scripts = import ./scripts { inherit pkgs; };
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [ ./firefox ./fish ./sway ./neovim ./rofi ./thunderbird ];
|
||||||
./firefox
|
|
||||||
./fish
|
|
||||||
#./sway
|
|
||||||
./neovim
|
|
||||||
./rofi
|
|
||||||
#./thunderbird
|
|
||||||
];
|
|
||||||
|
|
||||||
xdg.configFile."gtk-4.0/gtk.css".source =
|
xdg.configFile."gtk-4.0/gtk.css".source =
|
||||||
"${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";
|
"${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";
|
||||||
|
|
||||||
dconf = {
|
dconf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
||||||
|
@ -21,10 +15,11 @@ in {
|
||||||
uris = [ "qemu:///system" ];
|
uris = [ "qemu:///system" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.blueman-applet.enable = true;
|
services.blueman-applet.enable = true;
|
||||||
|
|
||||||
qt.enable = true;
|
qt.enable = true;
|
||||||
qt.platformTheme = "gtk";
|
qt.platformTheme.name = "gtk";
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
inherit stateVersion;
|
inherit stateVersion;
|
||||||
|
|
|
@ -148,8 +148,7 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
command =
|
command = "${set-background}/bin/set-background -f ${wallpaper}";
|
||||||
"${scripts.set-background}/bin/set-background -f ${wallpaper}";
|
|
||||||
always = true;
|
always = true;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
programs.thunderbird = {
|
programs.thunderbird = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#settings = { mailnews.wraplength = 80; };
|
#settings = { mailnews.wraplength = 80; };
|
||||||
profiles.nico = {
|
profiles.nico = { isDefault = true; };
|
||||||
isDefault = true;
|
|
||||||
name = "nico";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,9 +35,9 @@ in {
|
||||||
time.timeZone = "Asia/Seoul";
|
time.timeZone = "Asia/Seoul";
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver.xkb = {
|
||||||
layout = "fr";
|
layout = "fr";
|
||||||
xkbVariant = "";
|
variant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.logind = {
|
services.logind = {
|
||||||
|
@ -137,6 +137,7 @@ in {
|
||||||
};
|
};
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
config.common.default = "*";
|
||||||
# gtk portal needed to make gtk apps happy
|
# gtk portal needed to make gtk apps happy
|
||||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||||
};
|
};
|
||||||
|
@ -218,11 +219,9 @@ in {
|
||||||
dotter
|
dotter
|
||||||
sassc
|
sassc
|
||||||
glib
|
glib
|
||||||
stylua
|
|
||||||
pamixer
|
pamixer
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
dconf
|
dconf
|
||||||
nixfmt
|
|
||||||
pavucontrol
|
pavucontrol
|
||||||
xdg-utils
|
xdg-utils
|
||||||
htop
|
htop
|
||||||
|
|
Loading…
Add table
Reference in a new issue