This commit is contained in:
parent
4f36c42b22
commit
ad3ded339f
11 changed files with 103 additions and 73 deletions
|
|
@ -151,7 +151,7 @@ _: {
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
p1n3appl3.tab
|
||||
custom.p1n3appl3.tab
|
||||
prismlauncher
|
||||
];
|
||||
};
|
||||
|
|
@ -195,6 +195,7 @@ _: {
|
|||
tokei
|
||||
just
|
||||
uv
|
||||
llvmPackages.bintools
|
||||
|
||||
(writeShellScriptBin "nas" ''
|
||||
mkdir -p ~/Documents/nas
|
||||
|
|
|
|||
|
|
@ -3,14 +3,7 @@ _: {
|
|||
custom.program.kitty.home-config =
|
||||
{ pkgs, flakes, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# Maple Mono (Ligature TTF unhinted)
|
||||
custom.maple-mono.truetype
|
||||
# Maple Mono NF (Ligature unhinted)
|
||||
custom.maple-mono.NF-unhinted
|
||||
# Maple Mono NF CN (Ligature unhinted)
|
||||
custom.maple-mono.NF-CN-unhinted
|
||||
];
|
||||
home.packages = pkgs.custom.maple-fonts-pack;
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -28,29 +28,30 @@ _: {
|
|||
flakes.noctalia.homeModules.default
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
matugen
|
||||
glib
|
||||
dconf
|
||||
gsettings-desktop-schemas
|
||||
xwayland-satellite
|
||||
# gtk
|
||||
nwg-look
|
||||
# qt config tool
|
||||
kdePackages.qt6ct
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
matugen
|
||||
glib
|
||||
dconf
|
||||
gsettings-desktop-schemas
|
||||
xwayland-satellite
|
||||
# gtk
|
||||
nwg-look
|
||||
# qt config tool
|
||||
kdePackages.qt6ct
|
||||
|
||||
fira
|
||||
jetbrains-mono
|
||||
fira-mono
|
||||
noto-fonts
|
||||
# media control
|
||||
playerctl
|
||||
# brightness control
|
||||
brightnessctl
|
||||
|
||||
# Maple Mono (Ligature TTF unhinted)
|
||||
custom.maple-mono.truetype
|
||||
# Maple Mono NF (Ligature unhinted)
|
||||
custom.maple-mono.NF-unhinted
|
||||
# Maple Mono NF CN (Ligature unhinted)
|
||||
custom.maple-mono.NF-CN-unhinted
|
||||
];
|
||||
fira
|
||||
jetbrains-mono
|
||||
fira-mono
|
||||
noto-fonts
|
||||
]
|
||||
++ custom.maple-fonts-pack;
|
||||
|
||||
programs.niri.settings = {
|
||||
# main laptop screen
|
||||
|
|
@ -127,6 +128,7 @@ _: {
|
|||
layout = {
|
||||
gaps = 5;
|
||||
center-focused-column = "never";
|
||||
always-center-single-column = true;
|
||||
|
||||
preset-column-widths = [
|
||||
{ proportion = 0.33333; }
|
||||
|
|
|
|||
|
|
@ -22,6 +22,8 @@ in
|
|||
{
|
||||
programs.nixvim = {
|
||||
plugins = {
|
||||
ansiesc.enable = true;
|
||||
|
||||
treesitter-textobjects = {
|
||||
enable = false;
|
||||
settings = {
|
||||
|
|
|
|||
|
|
@ -3,14 +3,7 @@ _: {
|
|||
custom.program.zed.home-config =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# Maple Mono (Ligature TTF unhinted)
|
||||
custom.maple-mono.truetype
|
||||
# Maple Mono NF (Ligature unhinted)
|
||||
custom.maple-mono.NF-unhinted
|
||||
# Maple Mono NF CN (Ligature unhinted)
|
||||
custom.maple-mono.NF-CN-unhinted
|
||||
];
|
||||
home.packages = pkgs.custom.maple-fonts-pack;
|
||||
|
||||
programs.zed-editor = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue