Compare commits

..

No commits in common. "67073822462d2d076e3e4b4712aef9d554a9d661" and "44b31b4483fc0483154cfb1163584b028b81adab" have entirely different histories.

3 changed files with 23 additions and 41 deletions

View File

@ -151,9 +151,6 @@ in
# To disable the firewall altogether. # To disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;
# Replaces /bin/sh with dash (which is faster than bash)
environment.binsh = "${pkgs.dash}/bin/dash";
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave

View File

@ -28,6 +28,7 @@ in
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
kitty
kdePackages.kate kdePackages.kate
(discord-canary.override { (discord-canary.override {
withOpenASAR = true; withOpenASAR = true;

View File

@ -1,45 +1,29 @@
{ ... }:
{ {
programs.kitty = { home.file.".config/kitty/kitty.conf".text = ''
enable = true; font_family Fira Code Regular
shellIntegration = { bold_font auto
mode = "enabled"; italic_font auto
enableFishIntegration = true; bold_italic_font auto
};
settings = {
shell = "fish";
font_family = "Fira Code Regular";
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
cursor_shape = "beam"; cursor_shape beam
disable_ligatures = "cursor"; disable_ligatures cursor
font_size = 12; font_size 12
scrollback_lines = 4096; scrollback_lines 4096
enable_audio_bell = "no"; enable_audio_bell no
copy_on_select = "clipboard"; copy_on_select clipboard
strip_trailing_spaces = "smart"; strip_trailing_spaces smart
sync_to_monitor = "no"; sync_to_monitor no
background_opacity = 0.75; background_opacity 0.75
initial_window_width = 576; initial_window_width 576
initial_window_height = 512; initial_window_height 512
remember_window_size = "no"; remember_window_size no
window_padding_width = 6; window_padding_width 6
placement_strategy = "center"; placement_strategy center
hide_window_decorations = "yes"; hide_window_decorations yes
}; shell_integration enabled
}; '';
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disables greeting
'';
};
} }