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 =
let
lib = import ./lib { inherit (nixpkgs) lib; };
lib = import ./lib nixpkgs.lib;
toPartialNixosConfig =
{ hostname, system }:

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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