Ran nix fmt against nixfmt-rfc-style
This commit is contained in:
parent
43e53f8fb2
commit
8bcd4fc6b8
62 changed files with 784 additions and 287 deletions
|
|
@ -1,4 +1,10 @@
|
|||
{ inputs, config, pkgs, lib, ... }:
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
kdepkgs = with pkgs.kdePackages; [
|
||||
ark
|
||||
|
|
@ -9,8 +15,10 @@ let
|
|||
merkuro
|
||||
kdepim-addons
|
||||
];
|
||||
in {
|
||||
environment.systemPackages = with pkgs;
|
||||
in
|
||||
{
|
||||
environment.systemPackages =
|
||||
with pkgs;
|
||||
[
|
||||
aspell
|
||||
aspellDicts.de
|
||||
|
|
@ -64,7 +72,8 @@ in {
|
|||
ventoy
|
||||
virt-manager
|
||||
wezterm
|
||||
] ++ kdepkgs;
|
||||
]
|
||||
++ kdepkgs;
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
|
|
@ -100,9 +109,22 @@ in {
|
|||
|
||||
fonts = {
|
||||
fontDir.enable = true;
|
||||
packages = with pkgs; [ corefonts maple-mono noto-fonts-cjk roboto ];
|
||||
packages = with pkgs; [
|
||||
corefonts
|
||||
maple-mono
|
||||
noto-fonts-cjk
|
||||
roboto
|
||||
];
|
||||
};
|
||||
|
||||
environment.plasma6.excludePackages =
|
||||
(with pkgs.kdePackages; [ elisa gwenview khelpcenter konsole oxygen ]);
|
||||
environment.plasma6.excludePackages = (
|
||||
with pkgs.kdePackages;
|
||||
[
|
||||
elisa
|
||||
gwenview
|
||||
khelpcenter
|
||||
konsole
|
||||
oxygen
|
||||
]
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue