mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
24 lines
419 B
Nix
24 lines
419 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./shell
|
|
./desktop
|
|
./terminal.nix
|
|
./flatpak.nix
|
|
./firewall.nix
|
|
./git.nix
|
|
];
|
|
|
|
services.kmscon = {
|
|
enable = true;
|
|
fonts = [
|
|
{
|
|
name = "FiraCode Nerd Font";
|
|
package = pkgs.nerdfonts.override {fonts = ["FiraCode"];};
|
|
}
|
|
];
|
|
extraConfig = "font-size=14";
|
|
extraOptions = "--term xterm-256color";
|
|
hwRender = true;
|
|
};
|
|
}
|