From 750183152003553acee078353eb61f5f2dd3cdd0 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Wed, 23 Oct 2024 23:08:00 +0100 Subject: [PATCH] setup stylix properly, now using mint cursor theme for nostalgia purposes. also installed nixd to use as an LSP for nvim, coming soon --- home-manager/stylix.nix | 9 +++++++-- hosts/gabbielaptop/configuration.nix | 11 +++++++---- modules/packages.nix | 1 + 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/home-manager/stylix.nix b/home-manager/stylix.nix index 33b4e7f..b8ed2e1 100644 --- a/home-manager/stylix.nix +++ b/home-manager/stylix.nix @@ -1,8 +1,13 @@ -{ config, ... }: +{ config, pkgs, ... }: { stylix = { enable = true; - # base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml"; + base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml"; image = ./wallpaper.png; + cursor = { + package = pkgs.mint-cursor-themes; + name = "Bibata-Modern-Classic"; + size = 24; + }; }; } diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index adf1a48..ef4b933 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -30,10 +30,13 @@ }; }; - nix.settings.experimental-features = [ - "nix-command" - "flakes" - ]; + nix = { + settings.experimental-features = [ + "nix-command" + "flakes" + ]; + nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; + }; # default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this # boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen; diff --git a/modules/packages.nix b/modules/packages.nix index f9ff2f9..53e3062 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -49,6 +49,7 @@ v4l-utils libreoffice nixfmt-rfc-style + nixd ]) ++