forked from extern/nix-config
chore: Formatting
This commit is contained in:
parent
8ffb196c0b
commit
7316153e37
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ libnotify ];
|
||||
|
||||
services.dunst = {
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
|
||||
|
@ -308,9 +308,9 @@ in
|
||||
|
||||
startify.section.header.val = vim.fn.system("${pkgs.fish}/bin/fish -c 'cat (random choice (${pkgs.fd}/bin/fd . ${pkgs.ponysay}/share/ponysay/quotes --ignore-file ~/.config/fd/ponyignore)) | head -n 1'")
|
||||
|
||||
startify.section.top_buttons.val = {
|
||||
startify.button("e", "新しいファイル", "<cmd>ene <CR>")
|
||||
}
|
||||
startify.section.top_buttons.val = {
|
||||
startify.button("e", "新しいファイル", "<cmd>ene <CR>")
|
||||
}
|
||||
|
||||
startify.section.mru.val = { { type = "padding", val = 0 } }
|
||||
startify.section.mru_cwd.val = {
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.qutebrowser = {
|
||||
enable = true;
|
||||
package = pkgs.qutebrowser-qt6;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ config, lib, ... }: {
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
cycle = false;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ lib, ... }: {
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ waycorner ];
|
||||
|
||||
xdg.configFile."waycorner/config.toml".text = /* toml */ ''
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.interception-tools = {
|
||||
enable = true;
|
||||
plugins = with pkgs.interception-tools-plugins; [ dual-function-keys ];
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts = {
|
||||
enableDefaultFonts = false;
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.ratbagd.enable = true;
|
||||
|
||||
environment.systemPackages = [ pkgs.piper ];
|
||||
|
@ -4,8 +4,9 @@ let
|
||||
quantum = 64;
|
||||
rate = 48000;
|
||||
qr = "${toString quantum}/${toString rate}";
|
||||
json = pkgs.formats.json {};
|
||||
in {
|
||||
json = pkgs.formats.json { };
|
||||
in
|
||||
{
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
||||
@ -38,7 +39,7 @@ in {
|
||||
rt.time.soft = 200000;
|
||||
rt.time.hard = 200000;
|
||||
};
|
||||
flags = ["ifexists" "nofail"];
|
||||
flags = [ "ifexists" "nofail" ];
|
||||
}
|
||||
{
|
||||
name = "libpipewire-module-protocol-pulse";
|
||||
@ -46,7 +47,7 @@ in {
|
||||
pulse.min.req = qr;
|
||||
pulse.min.quantum = qr;
|
||||
pulse.min.frag = qr;
|
||||
server.address = ["unix:native"];
|
||||
server.address = [ "unix:native" ];
|
||||
};
|
||||
}
|
||||
];
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
stylix.image = ../assets/wallpaper.png;
|
||||
stylix.polarity = "dark";
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";
|
||||
|
Loading…
Reference in New Issue
Block a user