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 = {
|
||||
"org/gnome/shell" = {
|
||||
enabled-extensions = [
|
||||
"org/gnome/shell".enabled-extensions = [
|
||||
"appindicatorsupport@rgcjonas.gmail.com"
|
||||
"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" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,29 +1,14 @@
|
|||
{pkgs, ...}: {
|
||||
programs.gnome-terminal.enable = false;
|
||||
environment = with pkgs; {
|
||||
gnome.excludePackages = [gnome-console];
|
||||
systemPackages = [
|
||||
environment.systemPackages = with pkgs; [
|
||||
blackbox-terminal
|
||||
nautilus-open-in-blackbox
|
||||
];
|
||||
};
|
||||
|
||||
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;
|
||||
home-manager.users.toast = {lib, ...}: {
|
||||
dconf.settings = with lib.hm.gvariant; {
|
||||
"com/raggesilver/BlackBox" = {
|
||||
# Dark mode
|
||||
style-preference = mkUint32 2;
|
||||
theme-dark = "Catppuccin Mocha";
|
||||
# Default working directory is home folder
|
||||
working-directory-mode = mkUint32 1;
|
||||
custom-font = "JetBrainsMono Nerd Font Mono 12";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
{...}: {
|
||||
imports = [
|
||||
./blackbox.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