fix neofetch output, small change to neovim, fix persistence cuz I am dumb, and did something with system

This commit is contained in:
Tyler Kelley 2024-02-19 05:12:17 -06:00
parent 487979003f
commit fe5cb192d3
4 changed files with 2 additions and 11 deletions

View File

@ -3,7 +3,7 @@
{ {
home.file.".config/neofetch/config.conf".text = '' home.file.".config/neofetch/config.conf".text = ''
print_info() { print_info() {
prin "$(color 6) ZaneyOS $ZOSVER " prin "$(color 6) ZaneyOS "
info underline info underline
info "$(color 7) VER" kernel info "$(color 7) VER" kernel
info "$(color 2) UP " uptime info "$(color 2) UP " uptime

View File

@ -14,14 +14,6 @@ in {
enable = true; enable = true;
powerlineFonts = true; powerlineFonts = true;
theme = "tomorrow"; theme = "tomorrow";
symbols = {
branch = "";
colnr = " ";
readonly = "";
linenr = " ";
maxlinenr = " ";
dirty= "";
};
}; };
startup = { startup = {
enable = true; enable = true;

View File

@ -1,7 +1,7 @@
{ config, pkgs, lib, username, ... }: { config, pkgs, lib, username, ... }:
let let
inherit ( ../../options.nix ) username; inherit ( import ../../options.nix ) username;
in in
{ {
environment.persistence."/nix/persist" = { environment.persistence."/nix/persist" = {

View File

@ -53,7 +53,6 @@ in {
}; };
environment.variables = { environment.variables = {
ZOSVER = "unstable";
FLAKE = "${flakeDir}"; FLAKE = "${flakeDir}";
POLKIT_BIN = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; POLKIT_BIN = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
}; };