mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2024-12-29 17:56:34 +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;
|
||||
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;
|
||||
package = pkgs.lix;
|
||||
registry = lib.mkForce (
|
||||
|
@ -98,14 +76,9 @@ in
|
|||
}) config.nix.registry;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
deploy-rs
|
||||
nixfmt
|
||||
nixpkgs-fmt
|
||||
nix-index
|
||||
nix-prefetch-git
|
||||
nixpkgs-review
|
||||
nurl
|
||||
nix-init
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
|
@ -120,7 +93,6 @@ in
|
|||
networking.hosts = {
|
||||
"192.168.191.46" = [ "zap" ];
|
||||
"192.168.191.142" = [ "kuraokami" ];
|
||||
"2a01:4f8:1c1e:7f93::1" = [ "bloomshine.de" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -96,8 +96,6 @@
|
|||
graphics = {
|
||||
enable = true;
|
||||
enable32Bit = true;
|
||||
extraPackages = with pkgs; [ ];
|
||||
extraPackages32 = with pkgs.pkgsi686Linux; [ ];
|
||||
};
|
||||
nvidia = {
|
||||
#package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
};
|
||||
|
||||
services.xserver = {
|
||||
xkbVariant = "altgr-intl";
|
||||
xkb.variant = "altgr-intl";
|
||||
};
|
||||
|
||||
services = {
|
||||
|
@ -53,9 +53,9 @@
|
|||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
hardware = {
|
||||
opengl = {
|
||||
graphics = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
enable32Bit = true;
|
||||
};
|
||||
gpgSmartcards.enable = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue