System/Nixinator: Update kmscon config after flake update
This commit is contained in:
@ -234,53 +234,50 @@
|
|||||||
|
|
||||||
kmscon = {
|
kmscon = {
|
||||||
enable = false;
|
enable = false;
|
||||||
hwRender = true;
|
|
||||||
useXkbConfig = true;
|
useXkbConfig = true;
|
||||||
# autologinUser = username;
|
# autologinUser = username;
|
||||||
|
|
||||||
fonts = [
|
config = let
|
||||||
{
|
color = config.home-manager.users.${username}.homemodules.color;
|
||||||
name = "MonoLisa Alt Script";
|
in {
|
||||||
package = pkgs.monolisa;
|
# term=xterm-256color
|
||||||
}
|
|
||||||
];
|
hwaccel = true;
|
||||||
|
|
||||||
|
font-name = color.font;
|
||||||
|
font-size = 14;
|
||||||
|
|
||||||
|
mode = "3440x1440";
|
||||||
|
palette = "custom";
|
||||||
|
|
||||||
|
palette-black = "0,0,0";
|
||||||
|
pallette-white = "255,255,255";
|
||||||
|
|
||||||
|
palette-red = color.rgbS.red;
|
||||||
|
palette-light-red = color.rgbS.red;
|
||||||
|
|
||||||
|
palette-green = color.rgbS.green;
|
||||||
|
palette-light-green = color.rgbS.green;
|
||||||
|
|
||||||
|
palette-yellow = color.rgbS.yellow;
|
||||||
|
palette-light-yellow = color.rgbS.yellow;
|
||||||
|
|
||||||
|
palette-blue = color.rgbS.blue;
|
||||||
|
palette-light-blue = color.rgbS.blue;
|
||||||
|
|
||||||
|
palette-magenta = color.rgbS.pink;
|
||||||
|
palette-light-magenta = color.rgbS.pink;
|
||||||
|
|
||||||
|
palette-cyan = color.rgbS.teal;
|
||||||
|
palette-light-cyan = color.rgbS.teal;
|
||||||
|
|
||||||
|
palette-foreground = color.rgbS.text;
|
||||||
|
palette-background = "0,0,0";
|
||||||
|
};
|
||||||
|
|
||||||
# NOTE: Do NOT use multline strings here!
|
# NOTE: Do NOT use multline strings here!
|
||||||
# This will create a linebreak in the systemd service and break login!
|
# This will create a linebreak in the systemd service and break login!
|
||||||
extraOptions = "";
|
extraOptions = "";
|
||||||
|
|
||||||
extraConfig = let
|
|
||||||
color = config.home-manager.users.${username}.homemodules.color;
|
|
||||||
in ''
|
|
||||||
# term=xterm-256color
|
|
||||||
font-size=14
|
|
||||||
mode=3440x1440
|
|
||||||
palette=custom
|
|
||||||
|
|
||||||
palette-black=0,0,0
|
|
||||||
pallette-white=255,255,255
|
|
||||||
|
|
||||||
palette-red=${color.rgbS.red}
|
|
||||||
palette-light-red=${color.rgbS.red}
|
|
||||||
|
|
||||||
palette-green=${color.rgbS.green}
|
|
||||||
palette-light-green=${color.rgbS.green}
|
|
||||||
|
|
||||||
palette-yellow=${color.rgbS.yellow}
|
|
||||||
palette-light-yellow=${color.rgbS.yellow}
|
|
||||||
|
|
||||||
palette-blue=${color.rgbS.blue}
|
|
||||||
palette-light-blue=${color.rgbS.blue}
|
|
||||||
|
|
||||||
palette-magenta=${color.rgbS.pink}
|
|
||||||
palette-light-magenta=${color.rgbS.pink}
|
|
||||||
|
|
||||||
palette-cyan=${color.rgbS.teal}
|
|
||||||
palette-light-cyan=${color.rgbS.teal}
|
|
||||||
|
|
||||||
palette-foreground=${color.rgbS.text}
|
|
||||||
palette-background=0,0,0
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
openssh = {
|
openssh = {
|
||||||
|
|||||||
Reference in New Issue
Block a user