Compare commits
5 commits
7d04111f4a
...
e497436f05
| Author | SHA1 | Date | |
|---|---|---|---|
| e497436f05 | |||
| ef324a47db | |||
| 12f190bbaa | |||
| 99bce3fd14 | |||
| 428fd3f9f0 |
4 changed files with 48 additions and 10 deletions
|
|
@ -37,11 +37,14 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
"org/gnome/shell".enabled-extensions = [
|
"org/gnome/shell" = {
|
||||||
|
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,14 +1,29 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.gnome-terminal.enable = false;
|
programs.gnome-terminal.enable = false;
|
||||||
environment.systemPackages = with pkgs; [
|
environment = with pkgs; {
|
||||||
|
gnome.excludePackages = [gnome-console];
|
||||||
|
systemPackages = [
|
||||||
blackbox-terminal
|
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";
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
15
roles/gnome/programs/nautilus.nix
Normal file
15
roles/gnome/programs/nautilus.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue