Generalize main browser profile and edit some syntax stuff
This commit is contained in:
parent
eec037be00
commit
e6e176c54b
|
@ -24,7 +24,7 @@
|
||||||
};
|
};
|
||||||
swraid = {
|
swraid = {
|
||||||
enable = true;
|
enable = true;
|
||||||
mdadmConf = "MAILADDR jimbo@jimbosfiles.com";
|
mdadmConf = "MAILADDR jimbo@${config.domains.jim2}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ let
|
||||||
];
|
];
|
||||||
in {
|
in {
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_cachyos;
|
kernelPackages = pkgs.unstable.linuxPackages_zen;
|
||||||
blacklistedKernelModules = [
|
blacklistedKernelModules = [
|
||||||
"pcspkr"
|
"pcspkr"
|
||||||
];
|
];
|
||||||
|
|
|
@ -368,7 +368,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.librewolf;
|
package = pkgs.librewolf;
|
||||||
profiles = {
|
profiles = {
|
||||||
Jimbo = {
|
Main = {
|
||||||
id = 0;
|
id = 0;
|
||||||
extensions = commonExtensions;
|
extensions = commonExtensions;
|
||||||
search = commonSearch;
|
search = commonSearch;
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
spotdl
|
spotdl
|
||||||
playerctl
|
playerctl
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
puddletag
|
||||||
pulsemixer
|
pulsemixer
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
};
|
};
|
||||||
"org/virt-manager/virt-manager/connections" = {
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
autoconnect = ["qemu:///system"];
|
autoconnect = [ "qemu:///system" ];
|
||||||
uris = ["qemu:///system"];
|
uris = [ "qemu:///system" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,10 +9,14 @@
|
||||||
theme = {
|
theme = {
|
||||||
name = "Colloid-Dark";
|
name = "Colloid-Dark";
|
||||||
package = pkgs.colloid-gtk-theme.override {
|
package = pkgs.colloid-gtk-theme.override {
|
||||||
themeVariants = ["default"];
|
themeVariants = [ "default" ];
|
||||||
colorVariants = ["dark"];
|
colorVariants = [ "dark" ];
|
||||||
sizeVariants = ["standard"];
|
sizeVariants = [ "standard" ];
|
||||||
tweaks = ["black" "rimless" "normal"];
|
tweaks = [
|
||||||
|
"black"
|
||||||
|
"rimless"
|
||||||
|
"normal"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
|
@ -26,14 +30,10 @@
|
||||||
|
|
||||||
gtk3 = {
|
gtk3 = {
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
# Local
|
|
||||||
"file:///home/jimbo/Downloads"
|
"file:///home/jimbo/Downloads"
|
||||||
"file:///home/jimbo/Documents"
|
"file:///home/jimbo/Documents"
|
||||||
"file:///home/jimbo/Videos"
|
"file:///home/jimbo/Videos"
|
||||||
"file:///home/jimbo/Pictures/Screenshots"
|
"file:///home/jimbo/Pictures/Screenshots"
|
||||||
"file:///home/jimbo/VMs"
|
|
||||||
|
|
||||||
# More important stuff
|
|
||||||
"file:///etc/nixos"
|
"file:///etc/nixos"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
## Launcher keys
|
## Launcher keys
|
||||||
|
|
||||||
# LibreWolf profiles
|
# LibreWolf profiles
|
||||||
"${primeMod}+F1" = ''exec librewolf -P Jimbo --name=JimBrowser | ${sendNotif} "Main Browser"'';
|
"${primeMod}+F1" = ''exec librewolf -P Main --name=MainBrowser | ${sendNotif} "Main Browser"'';
|
||||||
"${primeMod}+F2" = ''exec librewolf -P Alt --name=AltBrowser | ${sendNotif} "Alternate Browser"'';
|
"${primeMod}+F2" = ''exec librewolf -P Alt --name=AltBrowser | ${sendNotif} "Alternate Browser"'';
|
||||||
"${primeMod}+F3" = ''exec librewolf -P Misc --name=MiscBrowser | ${sendNotif} "Miscellaneous Browser"'';
|
"${primeMod}+F3" = ''exec librewolf -P Misc --name=MiscBrowser | ${sendNotif} "Miscellaneous Browser"'';
|
||||||
|
|
||||||
|
|
|
@ -112,7 +112,7 @@
|
||||||
};
|
};
|
||||||
assigns = {
|
assigns = {
|
||||||
# Broconfig.wsers
|
# Broconfig.wsers
|
||||||
"${config.ws.w1}" = [{app_id = "JimBrowser";}];
|
"${config.ws.w1}" = [{app_id = "MainBrowser";}];
|
||||||
"${config.ws.w1a}" = [{app_id = "AltBrowser";}];
|
"${config.ws.w1a}" = [{app_id = "AltBrowser";}];
|
||||||
|
|
||||||
# Communication
|
# Communication
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [ swappy ];
|
||||||
swappy
|
|
||||||
];
|
|
||||||
file = {
|
file = {
|
||||||
".config/swappy/config".text = ''
|
".config/swappy/config".text = ''
|
||||||
[Default]
|
[Default]
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue