- Formatted everything using Alejandra

- Added 'ncli format' as a quick command to format everything
This commit is contained in:
2026-03-11 16:03:16 +01:00
parent 25ecab4a70
commit c6862c78db
36 changed files with 987 additions and 839 deletions

View File

@ -1,8 +1,10 @@
{ pkgs, inputs, username, ... }:
{
imports =
[
pkgs,
inputs,
username,
...
}: {
imports = [
inputs.stylix.nixosModules.stylix
];
@ -12,7 +14,7 @@
stylix = {
enable = true;
autoEnable = false; #So I can choose my programs it targets myself!
autoEnable = false; #So I can choose my programs it targets myself!
#image = ../../other/wallpaper2.png;
#autoEnable = true; #Auto generate theme based on wallpaper
base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
@ -39,7 +41,7 @@
targets = {
plymouth.enable = true;
plymouth.logoAnimated = true;
console.enable = true; #Default console without desktop environment! (NOT KITTY!)
console.enable = true; #Default console without desktop environment! (NOT KITTY!)
grub.enable = false;
#qt.enable = false;
};

View File

@ -1,12 +1,15 @@
{pkgs, inputs, username, ...}:
{
pkgs,
inputs,
username,
...
}: {
imports = [
];
services = {
};
stylix = {
targets = {
kitty.enable = false;
@ -18,7 +21,7 @@
qt.enable = true;
qt.platform = "kde";
#kde.enable = false;
zen-browser.profileNames = [ "${username}" ];
zen-browser.profileNames = ["${username}"];
};
};
}