sync w/ sarien

This commit is contained in:
unexplrd
2025-02-20 00:03:27 +02:00
parent d5518fec15
commit 898c589004
5 changed files with 11 additions and 5 deletions

View File

@ -10,6 +10,7 @@
clean.extraArgs = "--keep-since 7d --keep 3";
flake = "/home/user/.config/nixos";
};
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
helix
nushell

View File

@ -12,14 +12,18 @@
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
base16Scheme = "${pkgs.base16-schemes}/share/themes/onedark.yaml";
polarity = "dark";
cursor = {
package = pkgs.google-cursor;
name = "GoogleDot-Blue";
size = 24;
};
image = ../../wallpapers/wallhaven-zylmoo.jpg;
image = builtins.fetchurl {
url = "https://w.wallhaven.cc/full/57/wallhaven-573e81.png";
name = "wallhaven-573e81";
sha256 = "1ygsmmzk6icnvkr18s2r3mqh2kmigwb1424chji730cjhm8zc3cx";
}; # ../../wallpapers/wallhaven-jxmo1y.jpg;
opacity.terminal = 0.9;
fonts = {
sizes = {

View File

@ -4,7 +4,7 @@
user = {
isNormalUser = true;
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
shell = pkgs.nushell;
shell = pkgs.fish;
};
# work = {
# isNormalUser = true;

View File

@ -1,6 +1,7 @@
{pkgs, ...}: {
shell = {
nushell.enable = true;
fish.enable = true;
nushell.enable = false;
oh-my-posh.enable = true;
};