set up kmscon
This commit is contained in:
parent
f33c9ae161
commit
7780fd442b
1 changed files with 14 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./shell
|
./shell
|
||||||
./desktop
|
./desktop
|
||||||
|
@ -7,4 +7,17 @@
|
||||||
./firewall.nix
|
./firewall.nix
|
||||||
./git.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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue