start update to nixpkgs 24.05 by updating kasei and common

This commit is contained in:
Oystein Kristoffer Tveit 2024-06-02 17:13:29 +02:00
parent c3e52087ad
commit 65ef9efd77
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
5 changed files with 20 additions and 16 deletions

View File

@ -133,7 +133,7 @@ in {
qt = mkIf graphics { qt = mkIf graphics {
enable = true; enable = true;
platformTheme = "gtk"; platformTheme.name = "gtk";
style = { style = {
name = "adwaita-dark"; name = "adwaita-dark";
package = pkgs.adwaita-qt; package = pkgs.adwaita-qt;

View File

@ -37,8 +37,6 @@ in {
ouch ouch
pandoc pandoc
parallel parallel
pinentry
pinentry-curses
progress progress
python3 python3
rclone rclone
@ -141,10 +139,11 @@ in {
] ++ lib.optionals (machineVars.laptop) [ ] ++ lib.optionals (machineVars.laptop) [
touchegg touchegg
] ++ lib.optionals (machineVars.gaming) [ ] ++ lib.optionals (machineVars.gaming) [
citra
desmume desmume
minecraft
osu-lazer osu-lazer
(prismlauncher.override {
jdk17 = jdk21;
})
retroarchFull retroarchFull
steam steam
steam-tui steam-tui

View File

@ -1,4 +1,4 @@
{ config, ... }: { pkgs, config, ... }:
{ {
programs.gpg = { programs.gpg = {
enable = true; enable = true;
@ -14,7 +14,7 @@
services.gpg-agent = { services.gpg-agent = {
enable = true; enable = true;
pinentryFlavor = "curses"; pinentryPackage = pkgs.pinentry-curses;
enableExtraSocket = true; enableExtraSocket = true;
enableSshSupport = true; enableSshSupport = true;
enableScDaemon = true; enableScDaemon = true;

View File

@ -248,7 +248,7 @@ in {
}; };
m = p "ncmpcpp"; m = p "ncmpcpp";
p = "${pkgs.python39Packages.ipython}/bin/ipython"; p = "${pkgs.python3Packages.ipython}/bin/ipython";
s = p "sxiv"; s = p "sxiv";
v = p "mpv"; v = p "mpv";
zt = p "zathura"; zt = p "zathura";

View File

@ -342,14 +342,19 @@ in {
]; ];
}; };
libinput = {
enable = !config.machineVars.headless;
touchpad.disableWhileTyping = true;
};
displayManager.defaultSession = "none+xmonad";
xserver = { xserver = {
enable = !config.machineVars.headless; enable = !config.machineVars.headless;
layout = "us";
xkbOptions = "caps:escape";
libinput = { xkb = {
enable = true; layout = "us";
touchpad.disableWhileTyping = true; options = "caps:escape";
}; };
desktopManager = { desktopManager = {
@ -357,6 +362,8 @@ in {
xfce.enable = !config.machineVars.headless; xfce.enable = !config.machineVars.headless;
}; };
displayManager.lightdm.enable = !config.machineVars.headless;
windowManager.xmonad = { windowManager.xmonad = {
enable = true; enable = true;
enableContribAndExtras = true; enableContribAndExtras = true;
@ -366,8 +373,6 @@ in {
]; ];
}; };
displayManager.lightdm.enable = !config.machineVars.headless;
displayManager.defaultSession = "none+xmonad";
}; };
}; };
@ -381,7 +386,7 @@ in {
zsh.enable = true; zsh.enable = true;
gnupg.agent.enable = true; gnupg.agent.enable = true;
gnupg.agent.pinentryFlavor = "curses"; gnupg.agent.pinentryPackage = pkgs.pinentry-curses;
neovim = { neovim = {
enable = true; enable = true;