format nixfiles
This commit is contained in:
parent
0bb45f1f2c
commit
28fb49a970
|
@ -86,11 +86,11 @@
|
|||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1641887635,
|
||||
"narHash": "sha256-kDGpufwzVaiGe5e1sBUBPo9f1YN+nYHJlYqCaVpZTQQ=",
|
||||
"lastModified": 1642104392,
|
||||
"narHash": "sha256-m71b7MgMh9FDv4MnI5sg9MiBVW6DhE1zq+d/KlLWSC8=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "b2737d4980a17cc2b7d600d7d0b32fd7333aca88",
|
||||
"rev": "5aaed40d22f0d9376330b6fa413223435ad6fee5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
pv
|
||||
tmux
|
||||
socat
|
||||
file
|
||||
inputs.deploy-rs.defaultPackage.${pkgs.system}
|
||||
];
|
||||
}
|
||||
|
|
13
home/gui/xdg.nix
Normal file
13
home/gui/xdg.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ xdg-utils ];
|
||||
xdg = {
|
||||
portal = {
|
||||
enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-wlr
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
gtkUsePortal = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -13,6 +13,7 @@
|
|||
"markdown.preview.fontFamily" = "'Comic Code'";
|
||||
"terminal.integrated.fontFamily" = "'Comic Code'";
|
||||
"files.autoSave" = "afterDelay";
|
||||
"synthwave84.disableGlow" = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
services.nginx.virtualHosts."vault.owo.monster" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations = { "/".proxyPass = "http://127.0.0.1:8200"; };
|
||||
locations = { "/" = { proxyPass = "http://127.0.0.1:8200"; }; };
|
||||
};
|
||||
#networking.firewall.allowedTCPPorts = [ 8200 ];
|
||||
}
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#profiles.connectivity.bluetooth
|
||||
profiles.connectivity.network_manager
|
||||
profiles.connectivity.ios
|
||||
|
||||
profiles.sound.pulseaudio
|
||||
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
profiles.base
|
||||
profiles.gui
|
||||
profiles.gui.environments.sway
|
||||
profiles.network_manager
|
||||
profiles.connectivity.network_manager
|
||||
profiles.connectivity.ios
|
||||
profiles.tor
|
||||
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
||||
];
|
||||
|
|
1
profiles/connectivity/ios/default.nix
Normal file
1
profiles/connectivity/ios/default.nix
Normal file
|
@ -0,0 +1 @@
|
|||
{ ... }: { services.usbmuxd.enable = true; }
|
Loading…
Reference in a new issue