add: remmina & thinkpad hardware mod
This commit is contained in:
parent
6b42b3cc22
commit
e63dd8d5d1
@ -29,6 +29,7 @@ in
|
|||||||
gimp = enabled;
|
gimp = enabled;
|
||||||
wireshark = enabled;
|
wireshark = enabled;
|
||||||
ghidra = enabled;
|
ghidra = enabled;
|
||||||
|
remmina = enabled;
|
||||||
browsers.firefox = {
|
browsers.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
gpuAcceleration = true;
|
gpuAcceleration = true;
|
||||||
|
17
modules/home/programs/graphical/remmina/default.nix
Executable file
17
modules/home/programs/graphical/remmina/default.nix
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
{ pkgs, lib, config, namespace, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf mkEnableOption;
|
||||||
|
|
||||||
|
cfg = config.${namespace}.programs.graphical.remmina;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.${namespace}.programs.graphical.remmina = {
|
||||||
|
enable = mkEnableOption "Remmina";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
remmina
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -7,6 +7,8 @@ in
|
|||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
hardware.amdgpu.initrd.enable = lib.mkDefault true;
|
||||||
|
services.xserver.videoDrivers = [ "modesetting" ];
|
||||||
|
|
||||||
# System Config
|
# System Config
|
||||||
reichard = {
|
reichard = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user