Compare commits
4 Commits
91536809c2
...
90992598a2
Author | SHA1 | Date |
---|---|---|
Sven Vogel | 90992598a2 | |
Sven Vogel | 9996b7d1a3 | |
Sven Vogel | 16dc04416f | |
Sven Vogel | 932ab66aad |
|
@ -83,7 +83,6 @@ in
|
||||||
|
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
programs.xwayland.enable = true;
|
programs.xwayland.enable = true;
|
||||||
xdg.portal.enable = true;
|
|
||||||
|
|
||||||
# exclude packages from plasma5
|
# exclude packages from plasma5
|
||||||
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
||||||
|
@ -147,8 +146,6 @@ in
|
||||||
# Enable touchpad support (enabled default in most desktopManager).
|
# Enable touchpad support (enabled default in most desktopManager).
|
||||||
# services.xserver.libinput.enable = true;
|
# services.xserver.libinput.enable = true;
|
||||||
|
|
||||||
programs.java.enable = true;
|
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = (with pkgs; [
|
environment.systemPackages = (with pkgs; [
|
||||||
|
@ -218,8 +215,6 @@ in
|
||||||
# networking.firewall.enable = false;
|
# networking.firewall.enable = false;
|
||||||
|
|
||||||
environment.sessionVariables = rec {
|
environment.sessionVariables = rec {
|
||||||
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
|
|
||||||
|
|
||||||
# rust
|
# rust
|
||||||
CARGO_TERM_COLOR = "always";
|
CARGO_TERM_COLOR = "always";
|
||||||
RUST_BACKTRACE = "1";
|
RUST_BACKTRACE = "1";
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./java.nix
|
||||||
./dotnet.nix
|
./dotnet.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
|
./xdg.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
|
||||||
|
# enable smooth font rendering
|
||||||
|
environment.sessionVariables = rec {
|
||||||
|
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.java.enable = true;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
|
||||||
|
xdg.portal = {
|
||||||
|
enable = true;
|
||||||
|
extraPortals = [
|
||||||
|
pkgs.xdg-desktop-portal-gtk
|
||||||
|
pkgs.xdg-desktop-portal-kde
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
pkgs.xdg-desktop-portal-gtk
|
||||||
|
pkgs.xdg-desktop-portal-kde
|
||||||
|
];
|
||||||
|
}
|
|
@ -5,5 +5,6 @@
|
||||||
./docker-rootless.nix
|
./docker-rootless.nix
|
||||||
./platformio.nix
|
./platformio.nix
|
||||||
./qemu.nix
|
./qemu.nix
|
||||||
|
./latex.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# LaTeX and tlmgr
|
||||||
|
texlive.combined.scheme-small
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
|
||||||
|
# Make the kernel use the correct driver early
|
||||||
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||||
|
|
||||||
|
# For 32 bit applications
|
||||||
|
hardware.opengl.driSupport32Bit = true;
|
||||||
|
|
||||||
|
# AMDVLK drivers can be used in addition to the Mesa RADV drivers
|
||||||
|
hardware.opengl.extraPackages = with pkgs; [
|
||||||
|
amdvlk
|
||||||
|
rocmPackages.clr.icd
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nvtop-amd
|
||||||
|
clinfo
|
||||||
|
rocmPackages.clr
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./amdgpu.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -40,9 +40,6 @@
|
||||||
discord
|
discord
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|
||||||
# LaTeX and tlmgr
|
|
||||||
texlive.combined.scheme-full
|
|
||||||
|
|
||||||
godot_4
|
godot_4
|
||||||
|
|
||||||
# command line tools
|
# command line tools
|
||||||
|
@ -54,7 +51,6 @@
|
||||||
btop
|
btop
|
||||||
htop
|
htop
|
||||||
tmux
|
tmux
|
||||||
nvtop-amd
|
|
||||||
asciiquarium
|
asciiquarium
|
||||||
pipes
|
pipes
|
||||||
tldr
|
tldr
|
||||||
|
|
Loading…
Reference in New Issue