diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-06-01 02:39:11 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-06-01 02:39:11 +0300 |
commit | ec144aaa8fb8c5a4b65e60bbc31a52d71d6e646a (patch) | |
tree | 27a5a684b2def43d0ba00fbb890ed26f572fb060 /nixosConfigurations/eonwe | |
parent | 2023-05-21 (diff) |
2023-06-01
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/eonwe/default.nix | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/nixosConfigurations/eonwe/default.nix b/nixosConfigurations/eonwe/default.nix index 1545925..b66aec2 100644 --- a/nixosConfigurations/eonwe/default.nix +++ b/nixosConfigurations/eonwe/default.nix @@ -18,7 +18,6 @@ with lib; { lutris.enable = true; minecraft.client.enable = true; steam.enable = true; - steam-run.quirks.crusaderKings3 = true; }; android.enable = true; bluetooth.enable = true; @@ -28,6 +27,8 @@ with lib; { mpd.enable = true; ipfs.enable = true; + vscode.enable = true; + common.nix.allowedUnfreePackages = ["burpsuite"]; }; @@ -41,6 +42,7 @@ with lib; { openttd radeontop vcmi + vial whatweb ]; @@ -63,13 +65,17 @@ with lib; { services.mpd.musicDirectory = mkForce "/mnt/udata/music"; }; - services.smartd = { - enable = true; - notifications.mail = { + services = { + smartd = { enable = true; - sender = "admin+smartd@${my.domain.shire}"; - recipient = "admin+smartd@${my.domain.shire}"; + notifications.mail = { + enable = true; + sender = "admin+smartd@${my.domain.shire}"; + recipient = "admin+smartd@${my.domain.shire}"; + }; }; + + udev.packages = with pkgs; [vial]; }; # Usually stuff that is going to be compiled on this machine is going to have |