add things
This commit is contained in:
@@ -215,6 +215,8 @@ in
|
|||||||
|
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
|
programs.kdeconnect.enable = true;
|
||||||
|
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
# You can use https://search.nixos.org/ to find more packages (and options).
|
# You can use https://search.nixos.org/ to find more packages (and options).
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|||||||
@@ -121,5 +121,5 @@
|
|||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
hardware.nvidia-container-toolkit.enable = true;
|
#hardware.nvidia-container-toolkit.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,8 @@
|
|||||||
end
|
end
|
||||||
|
|
||||||
fish_add_path $HOME/.cargo/bin
|
fish_add_path $HOME/.cargo/bin
|
||||||
|
fish_add_path $HOME/.local/share/pnpm/bin
|
||||||
|
fish_add_path $HOME/.npm/bin
|
||||||
fish_add_path /usr/bin
|
fish_add_path /usr/bin
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,4 +73,5 @@ with pkgs;
|
|||||||
bun
|
bun
|
||||||
jetbrains.rider
|
jetbrains.rider
|
||||||
julia-bin
|
julia-bin
|
||||||
|
haskellPackages.turtle
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -148,4 +148,6 @@ with pkgs;
|
|||||||
ipmitool
|
ipmitool
|
||||||
|
|
||||||
kubevirt
|
kubevirt
|
||||||
|
|
||||||
|
bubblewrap
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# X display system config
|
# X display system config
|
||||||
|
|
||||||
{ pkgs, ... }:
|
{ pkgs, config, ... }:
|
||||||
{
|
{
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = true;
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
@@ -8,9 +8,11 @@
|
|||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
|
||||||
hardware.nvidia = {
|
hardware.nvidia = {
|
||||||
open = false;
|
open = true;
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
powerManagement.enable = false;
|
powerManagement.enable = false;
|
||||||
|
nvidiaSettings = true;
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.production;
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
|
|||||||
Reference in New Issue
Block a user