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,11 +1,24 @@
{ config, lib, pkgs, inputs, ... }:
let electron-overlay = final: prev: { electron = final.electron_25; };
in {
{
config,
lib,
pkgs,
inputs,
...
}:
let
electron-overlay = final: prev: { electron = final.electron_25; };
in
{
imports = [ ];
users.users."alex" = {
isNormalUser = true;
extraGroups = [ "input" "networkmanager" "wheel" ];
extraGroups = [
"input"
"networkmanager"
"wheel"
"video"
];
description = "Alexander Kobjolke";
home = "/home/alex";
shell = pkgs.zsh;