Compare commits

...

2 Commits

Author SHA1 Message Date
Zynh Ludwig ea469d1366 the extra default nix bothered me 2024-07-08 17:50:19 -07:00
Zynh Ludwig 0a0fb77cc0 make lib wrapper a single arg function 2024-07-08 17:07:15 -07:00
7 changed files with 6 additions and 13 deletions

View File

@ -32,7 +32,7 @@
{ {
nixosConfigurations = nixosConfigurations =
let let
lib = import ./lib { inherit (nixpkgs) lib; }; lib = import ./lib nixpkgs.lib;
toPartialNixosConfig = toPartialNixosConfig =
{ hostname, system }: { hostname, system }:

View File

@ -1,7 +0,0 @@
{ ... }:
{
imports = [
./modules
];
}

View File

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../../home ../../home/modules
]; ];
snowhawk.neovim = { snowhawk.neovim = {

View File

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../../home ../../home/modules
]; ];
snowhawk.neovim = { snowhawk.neovim = {

View File

@ -5,7 +5,7 @@ let
in in
{ {
imports = [ imports = [
../../home ../../home/modules
]; ];
snowhawk.neovim = { snowhawk.neovim = {

View File

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../../home ../../home/modules
]; ];
snowhawk.neovim = { snowhawk.neovim = {

View File

@ -1,4 +1,4 @@
{ lib, ... }: lib:
with lib; with lib;
rec { rec {
# Ternary operator # Ternary operator