chore: Update flake inputs

This commit is contained in:
Alexander Kobjolke 2024-10-05 22:42:39 +02:00
parent 0e0c620c54
commit 1f9d373ddb
7 changed files with 105 additions and 47 deletions

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
home = {
@ -7,8 +12,8 @@
packages = with pkgs; [
firefox
alacritty
gnome.gnome-session
gnome.gnome-control-center
gnome-session
gnome-control-center
];
keyboard.layout = "de";
keyboard.variant = "nodeadkeys";
@ -16,6 +21,6 @@
xsession = {
enable = true;
windowManager.command = "${pkgs.gnome.gnome-session}/bin/gnome-session";
windowManager.command = "${pkgs.gnome-session}/bin/gnome-session";
};
}