Compare commits

..

5 commits

4 changed files with 48 additions and 10 deletions

View file

@ -37,11 +37,14 @@
}; };
}; };
dconf.settings = { dconf.settings = {
"org/gnome/shell".enabled-extensions = [ "org/gnome/shell" = {
"appindicatorsupport@rgcjonas.gmail.com" enabled-extensions = [
"dash-to-dock@micxgx.gmail.com" "appindicatorsupport@rgcjonas.gmail.com"
"panel-workspace-scroll@polymeilex.github.io" "dash-to-dock@micxgx.gmail.com"
]; "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";
}; };

View file

@ -1,14 +1,29 @@
{pkgs, ...}: { {pkgs, ...}: {
programs.gnome-terminal.enable = false; programs.gnome-terminal.enable = false;
environment.systemPackages = with pkgs; [ environment = with pkgs; {
blackbox-terminal gnome.excludePackages = [gnome-console];
]; systemPackages = [
blackbox-terminal
nautilus-open-in-blackbox
];
};
home-manager.users.toast = {lib, ...}: { home-manager.users.toast = {
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";

View file

@ -1,6 +1,11 @@
{...}: { {pkgs, ...}: {
imports = [ imports = [
./blackbox.nix ./blackbox.nix
./firefox.nix ./firefox.nix
./nautilus.nix
];
environment.systemPackages = with pkgs; [
gnome-tweaks
dconf-editor
]; ];
} }

View file

@ -0,0 +1,15 @@
{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;
};
};
};
}