- Formatted everything using Alejandra
- Added 'ncli format' as a quick command to format everything
This commit is contained in:
@ -1,10 +1,17 @@
|
||||
{pkgs, lib, inputs, username, project, plasmaTheme, ...}:
|
||||
{
|
||||
|
||||
imports = [
|
||||
./settings/common.nix
|
||||
./settings/powerProfile.nix
|
||||
]
|
||||
++ lib.optionals (plasmaTheme == "laptop") [ ./settings/laptop.nix ]
|
||||
++ lib.optionals (plasmaTheme == "desktop") [ ./settings/desktop.nix ];
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
username,
|
||||
project,
|
||||
plasmaTheme,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
./settings/common.nix
|
||||
./settings/powerProfile.nix
|
||||
]
|
||||
++ lib.optionals (plasmaTheme == "laptop") [./settings/laptop.nix]
|
||||
++ lib.optionals (plasmaTheme == "desktop") [./settings/desktop.nix];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user