Remove unnecessary profile picture

This commit is contained in:
Jimbo 2025-03-04 16:33:28 -05:00
parent 61e3677ce1
commit ba985e92c3
4 changed files with 2 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

View file

@ -1,6 +1,5 @@
{ config, lib, ... }: { { config, lib, ... }: {
home.file = lib.mkIf config.home.desktop.enable { home.file = lib.mkIf config.home.desktop.enable {
".face".source = ./assets/pfp.png;
".assets/wallpapers".source = ./assets/wallpapers; ".assets/wallpapers".source = ./assets/wallpapers;
".assets/lockscreen".source = ./assets/lockscreen; ".assets/lockscreen".source = ./assets/lockscreen;
".alsoftrc".text = "drivers=pulse"; ".alsoftrc".text = "drivers=pulse";

View file

@ -1,7 +1,7 @@
{ config, ... }: { config, ... }:
{ {
home = { home = {
username = "jimbo"; username = "vice";
homeDirectory = "/home/${config.home.username}"; homeDirectory = "/home/${config.home.username}";
sessionVariables = { sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";

View file

@ -5,7 +5,7 @@
}; };
config = { config = {
sysusers.main = "jimbo"; sysusers.main = "vice";
users.users."${config.sysusers.main}" = { users.users."${config.sysusers.main}" = {
hashedPassword = config.secrets.mainAccPass; hashedPassword = config.secrets.mainAccPass;