mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-26 00:18:28 +02:00
use lib.getExe where possible
This commit is contained in:
parent
20dd0ece6c
commit
1169e53c76
11 changed files with 40 additions and 43 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
libsixel
|
||||
|
@ -8,7 +8,7 @@
|
|||
server.enable = true;
|
||||
settings = rec {
|
||||
main = {
|
||||
shell = "${pkgs.zsh}/bin/zsh";
|
||||
shell = lib.getExe pkgs.zsh;
|
||||
dpi-aware = "yes";
|
||||
font = "monospace:family=Iosevka Nerd Font, size=8";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue