starting system package explosion

This commit is contained in:
2025-08-31 13:05:46 -06:00
parent 576a13ea8f
commit 23e168431d
9 changed files with 185 additions and 26 deletions

View File

@@ -19,7 +19,7 @@
window = { window = {
opacity = 0.9; opacity = 0.9;
# blur = true; # blur = true;
padding = {x=15;y=15;}; padding = {x=0;y=15;};
}; };
}; };
}; };

View File

@@ -0,0 +1,48 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
crawl
];
home.file.".crawlrc" = {
text = ''
# Character Creation Rules
# fully_random = false
# remember_name = false
weapon = viable
# species = viable
# background = viable
# Application Behavior Rules
restart_after_game = maybe
restart_after_save = false
view_max_width = 81
view_max_height = 21
dump_on_save = true
use_terminal_default_colours = true
# Menu Behavior Rules
easy_confirm = all
sort_menus = auto:3
assign_item_slot = backward
show_god_gift = yes
show_player_species = true
# Autopickup Behavior Rules
pickup_thrown = true
drop_disables_autopickup = true
autopickup_search = true
autopickup_starting_ammo = true
# Exploration Behavior Rules
explore_greedy = true
explore_greedy_visit = artefacts,glowing_items
# explore_greedy_visit += stacks
explore_stop = glowing_items,shops,altars,portals,branches,runed_doors
rest_wait_both = true
# Autofight Behavior Rules
auto_switch = true
autofight_fires = true
autofight_caught = true
fire_order_spell = attack
'';
};
}

View File

@@ -1,14 +1,31 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
programs.fuzzel = { programs.fuzzel = {
enable = true; enable = true;
settings = { settings = {
main = {
font = "Hack Nerd Font:size=12";
anchor = "top";
width = "20";
inner-pad = "15";
horizontal-pad = "30";
vertical-pad = "30";
lines = "10";
y-margin = "15";
};
colors = {
background = "#e391e2f2";
text = "545454ff";
selection = "545454ff";
selection-text = "e391e2f2";
border = "6e3a6dff";
};
border = {
width = "3";
selection-radius = "3";
};
}; };
}; };
} }

View File

@@ -1,2 +1,66 @@
inherits="dracula" # Author : Sebastian Zivota <loewenheim@mailbox.org>
ui.background= {} "comment" = { fg = "comment" }
"constant" = { fg = "purple" }
"constant.character.escape" = { fg = "pink" }
"function" = { fg = "green" }
"keyword" = { fg = "pink" }
"operator" = { fg = "pink" }
"punctuation" = { fg = "foreground" }
"string" = { fg = "yellow" }
"string.regexp" = { fg = "red" }
"tag" = { fg = "pink" }
"type" = { fg = "cyan", modifiers = ["italic"] }
"type.enum.variant" = { fg = "foreground", modifiers = ["italic"] }
"variable" = { fg = "foreground" }
"variable.builtin" = { fg = "cyan", modifiers = ["italic"] }
"variable.parameter" = { fg ="orange", modifiers = ["italic"] }
"diff.plus" = { fg = "green" }
"diff.delta" = { fg = "orange" }
"diff.minus" = { fg = "red" }
"ui.background" = {} #fg = "foreground", bg = "background" }
"ui.cursor" = { fg = "background", bg = "orange", modifiers = ["dim"] }
"ui.cursor.match" = { fg = "green", modifiers = ["underlined"] }
"ui.cursor.primary" = { fg = "background", bg = "cyan", modifier = ["dim"] }
"ui.help" = { fg = "foreground", bg = "background_dark" }
"ui.linenr" = { fg = "comment" }
"ui.linenr.selected" = { fg = "foreground" }
"ui.menu" = { fg = "foreground", bg = "background_dark" }
"ui.menu.selected" = { fg = "cyan", bg = "background_dark" }
"ui.popup" = { fg = "foreground", bg = "background_dark" }
"ui.selection" = { bg = "secondary_highlight" }
"ui.selection.primary" = { bg = "primary_highlight" }
"ui.statusline" = { fg = "foreground", bg = "background_dark" }
"ui.statusline.inactive" = { fg = "comment", bg = "background_dark" }
"ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "cyan" }
"ui.window" = { fg = "foreground" }
"ui.virtual" = { fg = "comment" }
"error" = { fg = "red" }
"warning" = { fg = "cyan" }
"markup.heading" = { fg = "purple", modifiers = ["bold"] }
"markup.list" = "cyan"
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
"markup.italic" = { fg = "yellow", modifiers = ["italic"] }
"markup.link.url" = "cyan"
"markup.link.text" = "pink"
"markup.quote" = { fg = "yellow", modifiers = ["italic"] }
"markup.raw" = { fg = "foreground" }
[palette]
background = "#282a36"
background_dark = "#21222c"
primary_highlight = "#800049"
secondary_highlight = "#4d4f66"
foreground = "#f8f8f2"
comment = "#6272a4"
red = "#ff5555"
orange = "#ffb86c"
yellow = "#f1fa8c"
green = "#50fa7b"
purple = "#bd93f9"
cyan = "#8be9fd"
pink = "#ff79c6"

View File

@@ -53,7 +53,7 @@
"diff.delta" = "orange" "diff.delta" = "orange"
"diff.minus" = "red" "diff.minus" = "red"
"ui.background" = { bg = "bg0" } "ui.background" = { }
"ui.cursor" = { fg = "bg0", bg = "fg" } "ui.cursor" = { fg = "bg0", bg = "fg" }
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" } "ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" } "ui.cursor.insert" = { fg = "bg0", bg = "grey1" }

View File

@@ -8,7 +8,24 @@
dracula_trans = ./dracula_trans.toml; dracula_trans = ./dracula_trans.toml;
}; };
settings = { settings = {
theme = "dracula_trans"; theme = "everforest_dark_trans";
editor = {
mouse = true;
middle-click-paste = true;
whitespace = {
render = {
space = "all";
tab = "all";
newline = "none";
};
characters = {
space = "·";
nbsp = "";
tab = "";
newline = "";
};
};
};
}; };
}; };

View File

@@ -0,0 +1,16 @@
{config, pkgs, locale, ...}:
{
i18n = {
defaultLocale = "${locale}";
LC_ADRESS = "${locale}";
LC_IDENTIFICATION = "${locale}";
LC_MEASUREMENT = "${locale}";
LC_MONETARY = "${locale}";
LC_NAME = "${locale}";
LC_NUMERIC = "${locale}";
LC_PAPER = "${locale}";
LC_TELEPHONE = "${locale}";
LC_TIME = "${locale}";
};
}

View File

@@ -0,0 +1,8 @@
{config, pkgs, ...}:
{
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
}

View File

@@ -8,6 +8,12 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
#system configs
../defaults/locale.nix
#system packages
../packages/sddm/sddm.nix
]; ];
# Bootloader. # Bootloader.
@@ -28,24 +34,7 @@
# Set your time zone. # Set your time zone.
time.timeZone = "${timezone}"; time.timeZone = "${timezone}";
# Select internationalisation properties.
i18n.defaultLocale = "${locale}";
i18n.extraLocaleSettings = {
LC_ADDRESS = "${locale}";
LC_IDENTIFICATION = "${locale}";
LC_MEASUREMENT = "${locale}";
LC_MONETARY = "${locale}";
LC_NAME = "${locale}";
LC_NUMERIC = "${locale}";
LC_PAPER = "${locale}";
LC_TELEPHONE = "${locale}";
LC_TIME = "${locale}";
};
services.displayManager.sddm.wayland.enable = true;
services.displayManager.sddm.enable = true;
programs.river.enable = true; programs.river.enable = true;
services.flatpak.enable = true; services.flatpak.enable = true;
xdg.portal = { xdg.portal = {