Move config into hosts folder
This commit is contained in:
parent
f0ba2200e8
commit
8ddd026085
5 changed files with 2 additions and 27 deletions
|
@ -47,8 +47,8 @@
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./universal.nix
|
./universal.nix
|
||||||
./configuration.nix
|
./hosts/nixos/configuration.nix
|
||||||
./services.nix
|
./hosts/nixos/services.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -69,7 +69,6 @@
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./universal.nix
|
./universal.nix
|
||||||
./services.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
# make a derivation for berkeley-mono font installation
|
|
||||||
{ pkgs }:
|
|
||||||
|
|
||||||
pkgs.stdenv.mkDerivation {
|
|
||||||
pname = "berkeley-mono-typeface";
|
|
||||||
version = "2.002";
|
|
||||||
|
|
||||||
src = "../assets/TX-02 2.002.zip";
|
|
||||||
|
|
||||||
unpackPhase = ''
|
|
||||||
runHook preUnpack
|
|
||||||
${pkgs.unzip}/bin/unzip $src
|
|
||||||
|
|
||||||
runHook postUnpack
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
install -Dm644 "TX-02 2.002/*.ttf" -t $out/share/fonts/truetype
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue