📦 add ferdium
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m51s
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m51s
This commit is contained in:
parent
b201ee77c0
commit
286e6d7578
2 changed files with 51 additions and 0 deletions
|
@ -23,6 +23,8 @@
|
|||
./ssh-chungus.nix
|
||||
./ssh-cherry.nix
|
||||
|
||||
./ferdium.nix
|
||||
|
||||
];
|
||||
|
||||
#time.timeZone = lib.mkForce "Asia/Bangkok";
|
||||
|
|
49
machines/cherry/ferdium.nix
Normal file
49
machines/cherry/ferdium.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
ferdium = pkgs.writeShellScriptBin "ferdium" ''
|
||||
/var/run/wrappers/bin/sudo -u ferdium -i ${pkgs.ferdium}/bin/ferdium $@
|
||||
'';
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
environment.systemPackages = [
|
||||
|
||||
ferdium
|
||||
(pkgs.makeDesktopItem {
|
||||
terminal = false;
|
||||
exec = "${ferdium}/bin/ferdium";
|
||||
name = "ferdium";
|
||||
desktopName = "Ferdium";
|
||||
icon = "${pkgs.ferdium}/share/icons/hicolor/512x512/apps/ferdium.png";
|
||||
})
|
||||
|
||||
pkgs.xorg.xhost
|
||||
];
|
||||
|
||||
users.users.ferdium = {
|
||||
isNormalUser = false;
|
||||
isSystemUser = true;
|
||||
home = "/home/ferdium";
|
||||
createHome = true;
|
||||
extraGroups = [
|
||||
"audio"
|
||||
"input"
|
||||
"video"
|
||||
"pipewire"
|
||||
];
|
||||
group = "ferdium";
|
||||
shell = pkgs.bashInteractive;
|
||||
};
|
||||
users.groups.ferdium = { };
|
||||
|
||||
security.sudo.extraConfig = ''
|
||||
${config.users.extraUsers.mainUser.name} ALL=(ferdium) NOPASSWD: ALL
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue