1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-20 09:39:39 +01:00

Compare commits

..

No commits in common. "01fbbbdc91953cd1b16cbe6785b46ae5d559ce0a" and "05eb1a3f4a43f6dcbf3794ba9de520fb76b6d49b" have entirely different histories.

4 changed files with 16 additions and 26 deletions

24
flake.lock generated
View File

@ -71,11 +71,11 @@
]
},
"locked": {
"lastModified": 1666837668,
"narHash": "sha256-EAR96dIDxFdzukRruBLCecQe02a8v1HzWmIvLmd09eM=",
"lastModified": 1666593425,
"narHash": "sha256-hr4ItI9O5Lz4CLaZ7t/EudgJKxJIKThbHAQH75g/6M0=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "cdaafbd7700b461f13869610954014f317338600",
"rev": "c3e508d7f6429e17283836350764d13ba564e391",
"type": "github"
},
"original": {
@ -228,11 +228,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1666851028,
"narHash": "sha256-e6DpqCMGzlpkhZDuS2fdDX1DsauFk8NARqQ1DDF42VY=",
"lastModified": 1665987993,
"narHash": "sha256-MvlaIYTRiqefG4dzI5p6vVCfl+9V8A1cPniUjcn6Ngc=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "dfd91284332a4882c504b4807b1922e0fe386621",
"rev": "0e6593630071440eb89cd97a52921497482b22c6",
"type": "github"
},
"original": {
@ -307,11 +307,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1666703756,
"narHash": "sha256-GwpMJ1hT+z1fMAUkaGtvbvofJQwdVFDEGVhfE82+AUk=",
"lastModified": 1666447894,
"narHash": "sha256-i9WHX4w/et4qPMzEXd9POmnO0/bthjr7R4cblKNHGms=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f994293d1eb8812f032e8919e10a594567cf6ef7",
"rev": "95aeaf83c247b8f5aa561684317ecd860476fcd6",
"type": "github"
},
"original": {
@ -323,11 +323,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1666767323,
"narHash": "sha256-drbsgF8iLzQQ6umzOU/idYkI+UoifQdpH+mwohB3J7c=",
"lastModified": 1666528161,
"narHash": "sha256-PFOQSC0x4xPD1p/GZIbpKuoEBu6M8HnEOeNRiBUCELA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e6e675cafe6a1d1b0eeb9ac3fe046091244b714e",
"rev": "471d92178b978fcbad8db27c2e8a4e737d4e0e27",
"type": "github"
},
"original": {

View File

@ -455,15 +455,11 @@
;; dap
(use-package dap-mode
:ensure
:after lsp-mode
:requires (dap-cpptools)
:config
(dap-ui-mode)
(dap-ui-controls-mode 1)
:custom
(dap-mode t)
(dap-ui-mode t))
(dap-ui-mode t)
(require 'dap-cpptools))
;; flycheck
(use-package flycheck

View File

@ -34,7 +34,7 @@ with lib; {
];
ExecStart = toString nix-index-db-update;
User = "nobody";
Group = "nogroup";
Group = "nobody";
};
};

View File

@ -9,13 +9,7 @@ with lib; {
cfg = config.elss.server.nginx;
in
mkIf cfg.enable {
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
services.nginx.enable = true;
networking.firewall.allowedTCPPorts = [80 443];
services.nginx.virtualHosts."localhost" = {
addSSL = false;