chore: removed other users and systems

This commit is contained in:
Nick 2025-06-26 02:15:04 -05:00
parent 2b4ad99e25
commit 233cab07dd
135 changed files with 216 additions and 2462 deletions

View file

@ -10,8 +10,8 @@ in
{
confirm-close-surface = false;
window-decoration = true;
font-size = fonts.sizes.terminal.size0;
font-family = fonts.names.name0;
font-size = fonts.sizes.terminal;
font-family = fonts.name;
window-padding-x = 10;
window-padding-y = 10;
copy-on-select = true;

View file

@ -6,19 +6,11 @@
let
inherit (flake.config.aesthetics.themes) currentTheme palettes;
inherit (flake.config.people) user0 user1 user2;
inherit (flake.config.people) user0;
user = config.home.username;
themeLogic =
if user == user0 then
currentTheme.theme0
else if user == user1 then
currentTheme.theme1
else if user == user2 then
currentTheme.theme2
else
currentTheme.theme0;
themeLogic = if user == user0 then currentTheme else currentTheme;
el = palettes.${themeLogic}.colours;
in