This commit is contained in:
mjallen18
2025-09-02 21:22:10 -05:00
parent 0691806032
commit 57a079a86f
11 changed files with 23 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
# Snowfall Lib provides a customized `lib` instance with access to your flake's library
{
# as well as the libraries available from your flake's inputs.
# lib,
lib,
# An instance of `pkgs` with your overlays and packages applied is also available.
pkgs,
# # You also have access to your flake's inputs.
@@ -60,7 +60,7 @@
environment.variables = {
GDK_SCALE = "1";
EDITOR = "${pkgs.vscodium}/bin/codium --wait";
VISUAL = "${pkgs.vscodium}/bin/codium --wait";
EDITOR = "${lib.getExe' pkgs.vscodium "codium"} --wait";
VISUAL = "${lib.getExe' pkgs.vscodium "codium"} --wait";
};
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ lib, pkgs, ... }:
let
kernel = pkgs.linuxPackages_cachyos;
in
@@ -13,7 +13,7 @@ in
enable = false;
configurationLimit = 5;
extraInstallCommands = ''
${pkgs.uutils-coreutils}/bin/uutils-echo "timeout 0
${lib.getExe' pkgs.uutils-coreutils "uutils-echo"} "timeout 0
console-mode 1
default nixos-*" > /boot/loader/loader.conf
'';