diff options
| author | jerpo <spleefer6@yandex.ru> | 2023-08-05 19:01:43 +0500 |
|---|---|---|
| committer | jerpo <spleefer6@yandex.ru> | 2023-08-05 19:01:43 +0500 |
| commit | 952b45648dbda12157bdbb1a841c3167ef712adf (patch) | |
| tree | 0f43e7cc92668fda3b4763864c0c31880b708ea1 /nixos/configuration.nix | |
| parent | e8ae745437124ee10c4d39ad3ca9a4ba4219add4 (diff) | |
some fixes
Diffstat (limited to 'nixos/configuration.nix')
| -rw-r--r-- | nixos/configuration.nix | 7 |
1 files changed, 4 insertions, 3 deletions
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 |
