Updated configuration

This commit is contained in:
2024-12-10 18:38:17 +01:00
parent 1ab78c65d7
commit a093970262
11 changed files with 171 additions and 130 deletions

View File

@@ -26,4 +26,9 @@
enableBashIntegration = true;
enableZshIntegration = true;
};
programs.skim = {
enable = true;
enableZshIntegration = true;
};
}

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }:
{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
@@ -10,6 +10,5 @@
dejavu_fonts
roboto
(nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
inputs.apple-fonts.packages.${pkgs.system}.sf-pro
];
}

View File

@@ -8,6 +8,8 @@
btop
git
yazi
just
];
environment.pathsToLink = [ "/share/zsh" ];

View File

@@ -19,16 +19,16 @@
# };
# SDDM configuration
environment.systemPackages = with pkgs; [
libsForQt5.qt5.qtquickcontrols2
libsForQt5.qt5.qtgraphicaleffects
];
# environment.systemPackages = with pkgs; [
# libsForQt5.qt5.qtquickcontrols2
# libsForQt5.qt5.qtgraphicaleffects
# ];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
theme = "${import ./sddm-theme.nix { inherit pkgs; }}";
};
# services.displayManager.sddm = {
# enable = true;
# wayland.enable = true;
# theme = "${import ./sddm-theme.nix { inherit pkgs; }}";
# };
# Sound configuration
hardware.pulseaudio.enable = false;

View File

@@ -1,17 +1,16 @@
{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
hardware.graphics = {
enable = true;
enable32Bit = true;
};
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [
amdvlk
mesa.drivers
];
hardware.graphics.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
programs.gamemode.enable = true;
}

View File

@@ -4,4 +4,5 @@
services.fprintd.enable = true;
security.pam.services.login.fprintAuth = false;
security.pam.services.cosmic-greeter.fprintAuth = false;
}