From 952b45648dbda12157bdbb1a841c3167ef712adf Mon Sep 17 00:00:00 2001 From: jerpo Date: Sat, 5 Aug 2023 19:01:43 +0500 Subject: some fixes --- nixos/configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'nixos') diff --git a/nixos/configuration.nix b/nixos/configuration.nix index ec2edaf..7414d60 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, inputs, ... }: +{ config, pkgs, inputs, outputs, ... }: { imports = @@ -12,7 +12,7 @@ ]; home-manager = { - extraSpecialArgs = { inherit inputs; }; + extraSpecialArgs = { inherit inputs outputs; }; useGlobalPkgs = true; useUserPackages = true; users.jerpo = import ../home-manager/home/home.nix; @@ -135,7 +135,7 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + vim wget git firefox @@ -168,6 +168,7 @@ pamixer rustup ]; + services.v2raya.enable = true; # Some programs need SUID wrappers, can be configured further or are -- cgit v1.2.3