Fix loki configuration
This commit is contained in:
parent
e9ff3833da
commit
c25a5759ca
4 changed files with 23 additions and 8 deletions
|
|
@ -151,7 +151,7 @@
|
||||||
odin-intel-stable = odinStable [ ./odin/configuration-intel.nix ./nixos_modules/pro_audio.nix ./nixos_modules/sesar.nix ];
|
odin-intel-stable = odinStable [ ./odin/configuration-intel.nix ./nixos_modules/pro_audio.nix ./nixos_modules/sesar.nix ];
|
||||||
odin-nvidia-stable = odinStable [ ./odin/configuration-nvidia.nix ./nixos_modules/pro_audio.nix ./nixos_modules/sesar.nix ];
|
odin-nvidia-stable = odinStable [ ./odin/configuration-nvidia.nix ./nixos_modules/pro_audio.nix ./nixos_modules/sesar.nix ];
|
||||||
|
|
||||||
loki = loki-unstable;
|
loki = loki-stable;
|
||||||
loki-stable = lokiStable [ ];
|
loki-stable = lokiStable [ ];
|
||||||
loki-unstable = lokiUnstable [ ];
|
loki-unstable = lokiUnstable [ ];
|
||||||
|
|
||||||
|
|
@ -169,7 +169,7 @@
|
||||||
|
|
||||||
devShells.default = unstablePkgs.mkShell {
|
devShells.default = unstablePkgs.mkShell {
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
${self.checks.${system}.pre-commit-check.shellHook}
|
${self.checks.${system}.pre-commit-check.shellHook}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
];
|
];
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.unstable.helix;
|
||||||
languages = [ ];
|
languages = [ ];
|
||||||
settings = {
|
settings = {
|
||||||
theme = "monokai_pro_octagon";
|
theme = "monokai_pro_octagon";
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
enableRedistributableFirmware = true;
|
||||||
|
|
||||||
nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||||
nvidia.prime = {
|
nvidia.prime = {
|
||||||
offload.enable = false;
|
offload.enable = false;
|
||||||
|
|
@ -78,7 +80,7 @@
|
||||||
gvfs = { enable = true; package = lib.mkForce pkgs.gnome3.gvfs; };
|
gvfs = { enable = true; package = lib.mkForce pkgs.gnome3.gvfs; };
|
||||||
jackett = { enable = true; openFirewall = true; group = "users"; };
|
jackett = { enable = true; openFirewall = true; group = "users"; };
|
||||||
logind.lidSwitch = "ignore";
|
logind.lidSwitch = "ignore";
|
||||||
node-red = { enable = true; openFirewall = true; withNpmAndGcc = true; };
|
node-red = { enable = false; openFirewall = true; withNpmAndGcc = true; };
|
||||||
openssh = { enable = true; openFirewall = true; permitRootLogin = "no"; passwordAuthentication = false; };
|
openssh = { enable = true; openFirewall = true; permitRootLogin = "no"; passwordAuthentication = false; };
|
||||||
plex = { enable = true; openFirewall = true; group = "users"; };
|
plex = { enable = true; openFirewall = true; group = "users"; };
|
||||||
power-profiles-daemon.enable = true;
|
power-profiles-daemon.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ modulesPath, ... }:
|
{ config, lib, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -23,16 +23,28 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/mnt/raid" = {
|
fileSystems."/mnt/raid1" = {
|
||||||
device = "/dev/sdc";
|
device = "/dev/disk/by-uuid/c84a38dc-9cc7-4762-b509-8fce1c1d95c8";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/mnt/raid1" = {
|
fileSystems."/mnt/raid" = {
|
||||||
device = "/dev/sde1";
|
device = "/dev/disk/by-uuid/7ca4d382-eed7-4b49-b7d8-4b5ca139dd9c";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.docker0.useDHCP = lib.mkDefault true;
|
||||||
|
networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.vboxnet0.useDHCP = lib.mkDefault true;
|
||||||
|
networking.interfaces.wlp7s0.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.ztmjfdwjkp.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue