Switch default terminal on sway to kitty

This commit is contained in:
Natsu Kagami 2022-06-12 12:44:21 -04:00
parent 48b03deb6e
commit ed91d7d8a1
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
3 changed files with 5 additions and 4 deletions

View file

@ -218,11 +218,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1654875595, "lastModified": 1654964420,
"narHash": "sha256-Vairke3ryPSFpgQdaYicPPhPWMGhtzm6V+1uF2Tefbk=", "narHash": "sha256-Pu9TvVyWMLH362RGBYKMgX2ILSxRPtWovBmBC2s6Zjo=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3f909fb574d9b9d7294e544981c62a4a5e4599fc", "rev": "419e07c3823fff0bbe24b2759a2d73a01ecd3c69",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -41,6 +41,7 @@
mode = "1920x1080@144Hz"; mode = "1920x1080@144Hz";
adaptive_sync = "on"; adaptive_sync = "on";
}; };
nki.programs.kitty.fontSize = 16;
# linux.graphical.x11.hidpi = true; # linux.graphical.x11.hidpi = true;
# linux.graphical.x11.enablei3 = true; # linux.graphical.x11.enablei3 = true;

View file

@ -59,7 +59,7 @@ in
terminal = mkOption { terminal = mkOption {
type = types.str; type = types.str;
description = "The command to the terminal emulator to be used"; description = "The command to the terminal emulator to be used";
default = "${pkgs.alacritty}/bin/alacritty"; default = "${config.programs.kitty.package}/bin/kitty";
}; };
enableLaptopBars = mkOption { enableLaptopBars = mkOption {