aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/configuration.nix7
-rw-r--r--pkgs/default.nix2
2 files changed, 5 insertions, 4 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
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 1624cc3..8580f6d 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -3,5 +3,5 @@
{ pkgs ? (import ../nixpkgs.nix) { } }: {
# example = pkgs.callPackage ./example { };
- sddm-sugar-dark-theme = pkgs.libsForQt5.callPackage ./sddm-sugar-dark-theme { };
+ sddm-sugar-dark-theme = pkgs.libsForQt5.callPackage ./sddm-sugar-dark { };
}