starlight configuration
This commit is contained in:
parent
af42bf2109
commit
db33ecec05
|
@ -41,8 +41,7 @@
|
|||
isNormalUser = true;
|
||||
description = "Artemis Tosini";
|
||||
uid = 1000;
|
||||
extraGroups = [ "wheel" "users" ];
|
||||
group = "artemis";
|
||||
extraGroups = [ "wheel" "artemis" ];
|
||||
# hashedPassword set in private
|
||||
};
|
||||
groups.artemis.gid = config.users.users.artemis.uid;
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
imports = [
|
||||
./git.nix
|
||||
./mpv.nix
|
||||
./kitty.nix
|
||||
./neovim
|
||||
];
|
||||
|
||||
|
|
21
home/kitty.nix
Normal file
21
home/kitty.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
package = pkgs.fira-code;
|
||||
name = "Fira Code";
|
||||
size = 9;
|
||||
};
|
||||
settings = {
|
||||
update_check_interval = 0;
|
||||
close_on_child_death = true;
|
||||
enable_audio_bell = 0;
|
||||
term = "kitty";
|
||||
clipboard_control = false;
|
||||
scrollback_lines = 32768;
|
||||
touch_scroll_multiplier = 4;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -3,6 +3,7 @@ let
|
|||
llvm = pkgs.llvmPackages_12;
|
||||
ffmpeg-nonfree = pkgs.ffmpeg-full.override { nonfreeLicensing = true; fdkaacExtlib = true; };
|
||||
mpv = pkgs.wrapMpv (pkgs.mpv-unwrapped.override { ffmpeg = ffmpeg-nonfree; }) { };
|
||||
firefox = (pkgs.firefox-bin.override { forceWayland = true; });
|
||||
in
|
||||
{
|
||||
environment.systemPackages = (with pkgs; [
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
virtmanager
|
||||
spice_gtk
|
||||
cloud-hypervisor
|
||||
];
|
||||
|
||||
users.users = {
|
||||
|
|
|
@ -75,6 +75,8 @@
|
|||
})
|
||||
];
|
||||
|
||||
boot.extraModulePackages = [ config.boot.kernelPackages.hid-nintendo ];
|
||||
|
||||
hardware.opengl.extraPackages = with pkgs; [ vulkan-validation-layers ];
|
||||
|
||||
# Home
|
||||
|
|
Loading…
Reference in a new issue