oops
This commit is contained in:
parent
fb545ba987
commit
cc9a943a04
5 changed files with 11 additions and 12 deletions
|
@ -6,6 +6,7 @@ in
|
|||
{
|
||||
options = {
|
||||
mySystem.de.gnome = {
|
||||
enable = mkEnableOption "GNOME" // { default = true; };
|
||||
systrayicons = mkEnableOption "Enable systray icons" // { default = true; };
|
||||
gsconnect = mkEnableOption "Enable gsconnect (KDEConnect for GNOME)" // { default = true; };
|
||||
};
|
||||
|
|
|
@ -49,12 +49,11 @@ with lib;
|
|||
description = "System purpose";
|
||||
default = "Development";
|
||||
};
|
||||
};
|
||||
|
||||
monitoring.prometheus.scrapeConfigs = mkOption {
|
||||
type = lib.types.listOf lib.types.attrs;
|
||||
description = "Prometheus scrape targets";
|
||||
default = [ ];
|
||||
monitoring.prometheus.scrapeConfigs = mkOption {
|
||||
type = lib.types.listOf lib.types.attrs;
|
||||
description = "Prometheus scrape targets";
|
||||
default = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
|
@ -18,13 +18,13 @@ in
|
|||
driSupport32Bit = true;
|
||||
};
|
||||
|
||||
hardware.opengl.extraPackages = with pkgs; [
|
||||
opengl.extraPackages = with pkgs; [
|
||||
vaapiVdpau
|
||||
];
|
||||
|
||||
# This is for the benefit of VSCODE running natively in wayland
|
||||
|
||||
hardware.nvidia = {
|
||||
nvidia = {
|
||||
|
||||
# Modesetting is required.
|
||||
modesetting.enable = true;
|
||||
|
|
|
@ -40,7 +40,7 @@ in
|
|||
networking.firewall.interfaces.podman0.allowedUDPPorts = [ 53 ];
|
||||
|
||||
# extra user for containers
|
||||
users = {
|
||||
users.users = {
|
||||
kah = {
|
||||
uid = 568;
|
||||
group = "kah";
|
||||
|
|
|
@ -18,10 +18,9 @@ in
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
services = {
|
||||
samaba = {
|
||||
samba = {
|
||||
enable = true;
|
||||
inherit (cfg) extraConfig;
|
||||
inherit (cfg) shares;
|
||||
inherit (cfg) extraConfig shares;
|
||||
openFirewall = true;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue