mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:26:51 +01:00
clean up deprecated functions
This commit is contained in:
parent
9a20612fe5
commit
f51a53d7cb
3 changed files with 3 additions and 33 deletions
|
@ -43,28 +43,6 @@ in
|
||||||
keep-going = true;
|
keep-going = true;
|
||||||
builders-use-substitutes = true;
|
builders-use-substitutes = true;
|
||||||
};
|
};
|
||||||
# buildMachines = [
|
|
||||||
# (rec {
|
|
||||||
# systems = [ self.nixosConfigurations.kuraokami.config.nixpkgs.hostPlatform.system ];
|
|
||||||
# supportedFeatures = self.nixosConfigurations.kuraokami.config.nix.settings.system-features;
|
|
||||||
# maxJobs = if hostName != config.networking.hostName then 24 else 0;
|
|
||||||
# speedFactor = 20;
|
|
||||||
# sshKey = "/home/jopejoe1/.ssh/github";
|
|
||||||
# sshUser = "jopejoe1";
|
|
||||||
# hostName = "kuraokami";
|
|
||||||
# protocol = "ssh-ng";
|
|
||||||
# })
|
|
||||||
# (rec {
|
|
||||||
# systems = [ self.nixosConfigurations.zap.config.nixpkgs.hostPlatform.system ];
|
|
||||||
# supportedFeatures = self.nixosConfigurations.zap.config.nix.settings.system-features;
|
|
||||||
# maxJobs = if hostName != config.networking.hostName then 4 else 0;
|
|
||||||
# speedFactor = 10;
|
|
||||||
# sshUser = "jopejoe1";
|
|
||||||
# sshKey = "/home/jopejoe1/.ssh/github";
|
|
||||||
# hostName = "zap";
|
|
||||||
# protocol = "ssh-ng";
|
|
||||||
# })
|
|
||||||
# ];
|
|
||||||
distributedBuilds = true;
|
distributedBuilds = true;
|
||||||
package = pkgs.lix;
|
package = pkgs.lix;
|
||||||
registry = lib.mkForce (
|
registry = lib.mkForce (
|
||||||
|
@ -98,14 +76,9 @@ in
|
||||||
}) config.nix.registry;
|
}) config.nix.registry;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
deploy-rs
|
|
||||||
nixfmt
|
|
||||||
nixpkgs-fmt
|
|
||||||
nix-index
|
nix-index
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nixpkgs-review
|
nixpkgs-review
|
||||||
nurl
|
|
||||||
nix-init
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
@ -120,7 +93,6 @@ in
|
||||||
networking.hosts = {
|
networking.hosts = {
|
||||||
"192.168.191.46" = [ "zap" ];
|
"192.168.191.46" = [ "zap" ];
|
||||||
"192.168.191.142" = [ "kuraokami" ];
|
"192.168.191.142" = [ "kuraokami" ];
|
||||||
"2a01:4f8:1c1e:7f93::1" = [ "bloomshine.de" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,8 +96,6 @@
|
||||||
graphics = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enable32Bit = true;
|
enable32Bit = true;
|
||||||
extraPackages = with pkgs; [ ];
|
|
||||||
extraPackages32 = with pkgs.pkgsi686Linux; [ ];
|
|
||||||
};
|
};
|
||||||
nvidia = {
|
nvidia = {
|
||||||
#package = config.boot.kernelPackages.nvidiaPackages.stable;
|
#package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
xkbVariant = "altgr-intl";
|
xkb.variant = "altgr-intl";
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
@ -53,9 +53,9 @@
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
opengl = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
driSupport32Bit = true;
|
enable32Bit = true;
|
||||||
};
|
};
|
||||||
gpgSmartcards.enable = true;
|
gpgSmartcards.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue