Compare commits

..

No commits in common. "ea469d1366d5a73ee372a1035a59586325623199" and "e1de2cc440bdebfa1068de3b7f188ed9642834f8" have entirely different histories.

7 changed files with 13 additions and 6 deletions

View File

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

7
home/default.nix Normal file
View File

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

View File

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

View File

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

View File

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

View File

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

View File

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