From 7d400e69a43667e80b48458314eeed10c7260df6 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Tue, 2 Apr 2024 21:14:59 +0000 Subject: [PATCH] Switch to gnome Console (v46) and removal of useless script --- README.md | 6 ------ home.nix | 20 ++++++++------------ scripts/archInstall.sh | 10 ---------- 3 files changed, 8 insertions(+), 28 deletions(-) delete mode 100644 scripts/archInstall.sh diff --git a/README.md b/README.md index f2812277..5dac807d 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,6 @@ curl -L https://raw.githubusercontent.com/TrudeEH/dotfiles/main/install.sh | bas - `update` Update Nix and the OS. - `reload` Rebuild the config after changing it. -## Scripts -- `archinstall` Install Arch Linux from the liveCD. -```sh -curl -L https://raw.githubusercontent.com/TrudeEH/dotfiles/main/scripts/archinstall.sh | bash -``` - ## Supported distros - Debian - Fedora Workstation diff --git a/home.nix b/home.nix index 79a9cc67..eef48c3f 100644 --- a/home.nix +++ b/home.nix @@ -262,7 +262,7 @@ "firefox.desktop" "org.gnome.Nautilus.desktop" "codium.desktop" - "org.gnome.Terminal.desktop" + "org.gnome.Console.desktop" "obsidian.desktop" "org.gnome.World.Secrets.desktop" "signal-desktop.desktop" @@ -282,6 +282,13 @@ "icon-view/default-zoom-level" = "small"; }; + "org/gnome/Console" = { + "theme" = "auto"; + "audible-bell" = false; + "use-system-font" = false; + "custom-font" = "JetBrainsMono Nerd Font 10" + }; + "org/gnome/desktop" = { "interface/color-scheme" = "prefer-dark"; "interface/enable-hot-corners" = false; @@ -298,17 +305,6 @@ }; }; - programs.gnome-terminal = { - enable = true; - profile."42ed2781-9a2b-4572-80a1-356a25f70b0c" = { - default = true; - visibleName = "trude"; - audibleBell = false; - showScrollbar = true; - font = "JetBrainsMono Nerd Font 10"; - }; - }; - programs.git = { enable = true; userName = "TrudeEH"; diff --git a/scripts/archInstall.sh b/scripts/archInstall.sh deleted file mode 100644 index 8cf3018c..00000000 --- a/scripts/archInstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -# Script to install Arch Linux from the liveCD. - -echo "[+] Installing dependencies..." -pacman -Sy --noconfirm curl reflector archlinux-keyring - -echo "[+] Selecting the fastest mirrors..." -reflector -a 48 -c $iso -f 5 -l 20 --sort rate --save /etc/pacman.d/mirrorlist - -archinstall