Skip to content

Commit

Permalink
feat: gnome stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Feb 22, 2024
1 parent 10a270b commit a68e0ca
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 1 deletion.
1 change: 1 addition & 0 deletions home/apps/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
./discord.nix
./fonts.nix
./git.nix
./gnome.nix
./gpg.nix
./gtk.nix
./kubernetes.nix
Expand Down
61 changes: 61 additions & 0 deletions home/apps/gnome.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
lib,
pkgs,
...
}: let
primary-color = "#161321";
secondary-color = "#161321";
wallpaper-uri = "file://${../wallpapers/dhm_1610.png}";
in {
home.packages = with pkgs.gnomeExtensions; [
appindicator
blur-my-shell
mullvad-indicator
noannoyance-fork
pop-shell
user-themes
];

dconf.settings = with lib.hm.gvariant; {
# input
"org/gnome/desktop/wm/preferences" = {
resize-with-right-button = true;
};
"org/gnome/desktop/input-sources" = {
sources = [(mkTuple ["xkb" "us"])];
xkb-options = ["caps:ctrl_modifier"];
};

# rice
"org/gnome/shell" = {
disable-user-extensions = false;
enabled-extensions = [
"[email protected]"
"blur-my-shell@aunetx"
"[email protected]"
"[email protected]"
"[email protected]"
"[email protected]"
];
favorite-apps = ["org.gnome.Nautilus.desktop" "chromium-browser.desktop" "org.wezfurlong.wezterm.desktop"];
};
"org/gnome/shell/extensions/user-theme" = {
name = "Catppuccin-Frappe-Compact-Pink-Dark";
};

# wallpaper
"org/gnome/desktop/background" = {
color-shading-type = "solid";
picture-options = "zoom";
picture-uri = wallpaper-uri;
picture-uri-dark = wallpaper-uri;
inherit primary-color secondary-color;
};
"org/gnome/desktop/screensaver" = {
color-shading-type = "solid";
picture-options = "zoom";
picture-uri = wallpaper-uri;
inherit primary-color secondary-color;
};
};
}
2 changes: 1 addition & 1 deletion home/apps/starship/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ $character"""

add_newline = true
continuation_prompt = '[>](bold subtext0) '
palette = "catppuccin_frappe"
palette = "catppuccin_mocha"

[character]
success_symbol = '[λ](bold text)'
Expand Down
2 changes: 2 additions & 0 deletions machines/futomaki/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
}: {
imports = [./hardware.nix];

dotfiles.desktop = "gnome";

networking = {
networkmanager.enable = true;
firewall.enable = true;
Expand Down

0 comments on commit a68e0ca

Please sign in to comment.