format nixfiles

This commit is contained in:
ChaotiCryptidz 2022-01-17 19:55:34 +00:00
parent 0bb45f1f2c
commit 28fb49a970
8 changed files with 23 additions and 5 deletions

View file

@ -86,11 +86,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1641887635, "lastModified": 1642104392,
"narHash": "sha256-kDGpufwzVaiGe5e1sBUBPo9f1YN+nYHJlYqCaVpZTQQ=", "narHash": "sha256-m71b7MgMh9FDv4MnI5sg9MiBVW6DhE1zq+d/KlLWSC8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b2737d4980a17cc2b7d600d7d0b32fd7333aca88", "rev": "5aaed40d22f0d9376330b6fa413223435ad6fee5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -6,6 +6,7 @@
pv pv
tmux tmux
socat socat
file
inputs.deploy-rs.defaultPackage.${pkgs.system} inputs.deploy-rs.defaultPackage.${pkgs.system}
]; ];
} }

13
home/gui/xdg.nix Normal file
View 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;
};
};
}

View file

@ -13,6 +13,7 @@
"markdown.preview.fontFamily" = "'Comic Code'"; "markdown.preview.fontFamily" = "'Comic Code'";
"terminal.integrated.fontFamily" = "'Comic Code'"; "terminal.integrated.fontFamily" = "'Comic Code'";
"files.autoSave" = "afterDelay"; "files.autoSave" = "afterDelay";
"synthwave84.disableGlow" = true;
}; };
}; };
} }

View file

@ -11,7 +11,7 @@
services.nginx.virtualHosts."vault.owo.monster" = { services.nginx.virtualHosts."vault.owo.monster" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations = { "/".proxyPass = "http://127.0.0.1:8200"; }; locations = { "/" = { proxyPass = "http://127.0.0.1:8200"; }; };
}; };
#networking.firewall.allowedTCPPorts = [ 8200 ]; #networking.firewall.allowedTCPPorts = [ 8200 ];
} }

View file

@ -16,6 +16,7 @@
#profiles.connectivity.bluetooth #profiles.connectivity.bluetooth
profiles.connectivity.network_manager profiles.connectivity.network_manager
profiles.connectivity.ios
profiles.sound.pulseaudio profiles.sound.pulseaudio

View file

@ -7,7 +7,8 @@
profiles.base profiles.base
profiles.gui profiles.gui
profiles.gui.environments.sway profiles.gui.environments.sway
profiles.network_manager profiles.connectivity.network_manager
profiles.connectivity.ios
profiles.tor profiles.tor
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix") (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
]; ];

View file

@ -0,0 +1 @@
{ ... }: { services.usbmuxd.enable = true; }