Compare commits
No commits in common. "90992598a254a0cf2dc39b7ced54484f28a4bc52" and "91536809c2e36095c824140db48aa9d484817914" have entirely different histories.
90992598a2
...
91536809c2
|
@ -83,6 +83,7 @@ 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; [
|
||||||
|
@ -146,6 +147,8 @@ 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; [
|
||||||
|
@ -215,6 +218,8 @@ 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,8 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./java.nix
|
|
||||||
./dotnet.nix
|
./dotnet.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./xdg.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{ pkgs, config, ... }: {
|
|
||||||
|
|
||||||
# enable smooth font rendering
|
|
||||||
environment.sessionVariables = rec {
|
|
||||||
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.java.enable = true;
|
|
||||||
}
|
|
15
core/xdg.nix
15
core/xdg.nix
|
@ -1,15 +0,0 @@
|
||||||
{ 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,6 +5,5 @@
|
||||||
./docker-rootless.nix
|
./docker-rootless.nix
|
||||||
./platformio.nix
|
./platformio.nix
|
||||||
./qemu.nix
|
./qemu.nix
|
||||||
./latex.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ pkgs, config, ... }: {
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
# LaTeX and tlmgr
|
|
||||||
texlive.combined.scheme-small
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
{ 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
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./amdgpu.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -40,6 +40,9 @@
|
||||||
discord
|
discord
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|
||||||
|
# LaTeX and tlmgr
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
|
||||||
godot_4
|
godot_4
|
||||||
|
|
||||||
# command line tools
|
# command line tools
|
||||||
|
@ -51,6 +54,7 @@
|
||||||
btop
|
btop
|
||||||
htop
|
htop
|
||||||
tmux
|
tmux
|
||||||
|
nvtop-amd
|
||||||
asciiquarium
|
asciiquarium
|
||||||
pipes
|
pipes
|
||||||
tldr
|
tldr
|
||||||
|
|
Loading…
Reference in New Issue