Compare commits
No commits in common. "e497436f050134f90de83f13ecc35ef5a0c68655" and "7d04111f4abc9b30eaf4d638ad3e066182994164" have entirely different histories.
e497436f05
...
7d04111f4a
4 changed files with 10 additions and 48 deletions
|
|
@ -37,14 +37,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
"org/gnome/shell" = {
|
"org/gnome/shell".enabled-extensions = [
|
||||||
enabled-extensions = [
|
|
||||||
"appindicatorsupport@rgcjonas.gmail.com"
|
"appindicatorsupport@rgcjonas.gmail.com"
|
||||||
"dash-to-dock@micxgx.gmail.com"
|
"dash-to-dock@micxgx.gmail.com"
|
||||||
"panel-workspace-scroll@polymeilex.github.io"
|
"panel-workspace-scroll@polymeilex.github.io"
|
||||||
];
|
];
|
||||||
favorite-apps = ["firefox.desktop" "com.raggesilver.BlackBox.desktop" "org.gnome.Nautilus.desktop" "android-studio.desktop"];
|
|
||||||
};
|
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,14 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.gnome-terminal.enable = false;
|
programs.gnome-terminal.enable = false;
|
||||||
environment = with pkgs; {
|
environment.systemPackages = with pkgs; [
|
||||||
gnome.excludePackages = [gnome-console];
|
|
||||||
systemPackages = [
|
|
||||||
blackbox-terminal
|
blackbox-terminal
|
||||||
nautilus-open-in-blackbox
|
|
||||||
];
|
];
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users.toast = {
|
home-manager.users.toast = {lib, ...}: {
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
home.file.".local/share/blackbox/schemes".source =
|
|
||||||
(pkgs.fetchgit {
|
|
||||||
url = "https://github.com/catppuccin/tilix.git";
|
|
||||||
hash = "sha256-jWnxEtoqqqitHsaDErQNNYjv8DBcrJD0XeIKNopbO3c=";
|
|
||||||
})
|
|
||||||
+ /themes;
|
|
||||||
dconf.settings = with lib.hm.gvariant; {
|
dconf.settings = with lib.hm.gvariant; {
|
||||||
"com/raggesilver/BlackBox" = {
|
"com/raggesilver/BlackBox" = {
|
||||||
# Dark mode
|
# Dark mode
|
||||||
style-preference = mkUint32 2;
|
style-preference = mkUint32 2;
|
||||||
theme-dark = "Catppuccin Mocha";
|
|
||||||
# Default working directory is home folder
|
# Default working directory is home folder
|
||||||
working-directory-mode = mkUint32 1;
|
working-directory-mode = mkUint32 1;
|
||||||
custom-font = "JetBrainsMono Nerd Font Mono 12";
|
custom-font = "JetBrainsMono Nerd Font Mono 12";
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./blackbox.nix
|
./blackbox.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./nautilus.nix
|
|
||||||
];
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
gnome-tweaks
|
|
||||||
dconf-editor
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
nautilus-python
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.users.toast = {
|
|
||||||
dconf.settings = {
|
|
||||||
"org/gnome/preferences" = {
|
|
||||||
date-time-format = "detailed";
|
|
||||||
show-create-link = true;
|
|
||||||
show-delete-permanently = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue