fix: formatting
This commit is contained in:
parent
f7bb17211f
commit
0dc2e92eed
11 changed files with 43 additions and 15 deletions
|
@ -1,4 +1,7 @@
|
||||||
{default, ...}: {
|
{
|
||||||
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.dunst.enable = true;
|
services.dunst.enable = true;
|
||||||
services.dunst.configFile = "./dunstrc";
|
services.dunst.configFile = "./dunstrc";
|
||||||
}
|
}
|
|
@ -1,5 +1,7 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home.packages = [pkgs.gh];
|
home.packages = [pkgs.gh];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{pkgs, inputs, ...}: {
|
{
|
||||||
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{config, pkgs, ...}:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.lf = {
|
programs.lf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -538,5 +538,6 @@ let-env config = {
|
||||||
|
|
||||||
source ~/.cache/starship/init.nu
|
source ~/.cache/starship/init.nu
|
||||||
|
|
||||||
alias v = nvim
|
alias ze = zellij
|
||||||
|
alias zed = zellij --layout ../.config/zellij/snowflake.kdl
|
||||||
|
alias zes = zellij --layout ./config/zellij/ssh.kdl
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{
|
{
|
||||||
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.nushell = {
|
programs.nushell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configFile.source = ./config.nu;
|
configFile.source = ./config.nu;
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{config, lib, ...}: {
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
||||||
|
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, pkgs, lib, inputs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
dbus-hyprland-environment = pkgs.writeTextFile {
|
dbus-hyprland-environment = pkgs.writeTextFile {
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{default, ...}: {
|
{
|
||||||
programs.wezterm = {
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.wezterm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{default, ...}: {
|
{
|
||||||
|
default,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
programs.zathura.enable = true;
|
programs.zathura.enable = true;
|
||||||
|
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
default,
|
default,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.file.".config/zellij/dev.kdl".text = ''
|
home.file.".config/zellij/snowflake.kdl".text = ''
|
||||||
layout {
|
layout {
|
||||||
tab name="main" {
|
tab name="main" {
|
||||||
pane size=1 borderless=true {
|
pane size=1 borderless=true {
|
||||||
|
|
Loading…
Reference in a new issue