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 {
enable = true;
platformTheme = "gtk";
platformTheme.name = "gtk";
style = {
name = "adwaita-dark";
package = pkgs.adwaita-qt;

View File

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

View File

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

View File

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

View File

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