Successful build on RoryNix
1 files changed, 29 insertions, 25 deletions
diff --git a/host/RoryNix/configuration.nix b/host/RoryNix/configuration.nix
index 4db2d44..97030a3 100644
--- a/host/RoryNix/configuration.nix
+++ b/host/RoryNix/configuration.nix
@@ -97,7 +97,7 @@
feh
git
#lsd
- steam
+ #steam
#nerdfonts
#element-web
sshfs
@@ -124,27 +124,27 @@
fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
- nixpkgs.overlays = [
- (self: super: {
- python3 = super.python3.override {
- packageOverrides = python-self: python-super: {
- markdown-it-py = python-super.markdown-it-py.overrideAttrs (oldAttrs: {
- doInstallCheck = false;
- });
- };
- };
- haskellPackages = super.haskellPackages.override {
- overrides = haskellPackages-self: haskellPackages-super: {
- basement = haskellPackages-super.basement.overrideAttrs (oldAttrs: {
- patches = [
- ./patches/haskell/basement/IntWord64.patch
- ];
- });
- };
- };
- }
- )
- ];
+# nixpkgs.overlays = [
+# (self: super: {
+# python3 = super.python3.override {
+# packageOverrides = python-self: python-super: {
+# markdown-it-py = python-super.markdown-it-py.overrideAttrs (oldAttrs: {
+# doInstallCheck = false;
+# });
+# };
+# };
+# haskellPackages = super.haskellPackages.override {
+# overrides = haskellPackages-self: haskellPackages-super: {
+# basement = haskellPackages-super.basement.overrideAttrs (oldAttrs: {
+# patches = [
+# ./patches/haskell/basement/IntWord64.patch
+# ];
+# });
+# };
+# };
+# }
+# )
+# ];
security.polkit.enable = true;
nix = {
@@ -159,11 +159,15 @@
hostName = "192.168.0.3";
sshUser = "Rory";
sshKey = "/home/Rory/.ssh/id_ed25519";
- maxJobs = 12;
+ maxJobs = 6;
+ #cores = 2;
+ speedFactor = 43200;
}
];
- registry.nixpkgs.flake = pkgs;
- nixPath = "nixpkgs=flake:nixpkgs";
+ #buildersUseSubstitutes = true;
+ #ssh://Rory@192.168.0.3 x86_64-linux,i686-linux /home/Rory/.ssh/id_ed25519 12 1 - - -
+ #registry.nixpkgs.flake = pkgs;
+ nixPath = [ "nixpkgs=flake:nixpkgs" ];
};
system.stateVersion = "22.11"; # DO NOT EDIT!
|