mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Add experimental numen stuff into omen
Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
parent
9549ef1003
commit
cf4e2472cd
|
@ -39,6 +39,7 @@ in
|
|||
./firewall.nix
|
||||
./microvm.nix
|
||||
./impermenance.nix
|
||||
./numen.nix
|
||||
# ./test-vm.nix
|
||||
|
||||
inputs.dwarffs.nixosModules.dwarffs
|
||||
|
|
15
nixos/systems/omen/numen.nix
Normal file
15
nixos/systems/omen/numen.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, inputs', ... }:
|
||||
{
|
||||
services.udev.extraRules = ''
|
||||
KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput"
|
||||
'';
|
||||
users.users.main = {
|
||||
extraGroups = [
|
||||
"input"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
inputs'.numen-nix.packages.${pkgs.stdenv.system}.default
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue