format with nixfmt to nixpkgs standarts
nix flake show / show-flake (push) Successful in 27s

This commit is contained in:
smayzy
2025-07-24 19:19:46 +02:00
parent 8ce74dd7bf
commit 092579af98
56 changed files with 438 additions and 218 deletions
+6 -1
View File
@@ -1,4 +1,9 @@
{ config, lib, pkgs, ...}:
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
+3 -3
View File
@@ -1,4 +1,4 @@
{ config, lib, ...}:
{ config, lib, ... }:
let
inherit (lib) mkIf mkOption types;
in
@@ -12,11 +12,11 @@ in
config = mkIf config.smayzy.nh.enable {
programs.nh = {
enable = true;
clean= {
clean = {
enable = true;
extraArgs = "--keep 10";
dates = "hourly";
};
};
flake = "/home/smayzy/nix-config";
};
};
+14 -9
View File
@@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
@@ -8,7 +13,7 @@ in
default = false;
description = "nvf config";
};
config = mkIf config.smayzy.nvf.enable {
programs.nvf = {
enable = true;
@@ -25,14 +30,14 @@ in
clang.enable = true;
rust.enable = true;
};
theme = {
enable = true;
name = lib.mkDefault "dracula";
};
theme = {
enable = true;
name = lib.mkDefault "dracula";
};
treesitter.enable = true;
statusline.lualine.enable = true;
telescope.enable = true;
autocomplete.nvim-cmp.enable = true;
statusline.lualine.enable = true;
telescope.enable = true;
autocomplete.nvim-cmp.enable = true;
};
};
};
+6 -1
View File
@@ -1,4 +1,9 @@
{ config, lib, pkgs, ...}:
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in