diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-20 19:26:38 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-20 19:26:38 +0530 |
| commit | 912fde1c17ee143d805cc7798801b6952dcf8576 (patch) | |
| tree | 2ddfa5dd42948b35a4b5a8c63205c165fb78fc2e /configuration.nix | |
| parent | 43586a11fb56e5d3555e92ac67252c8ccd8341f8 (diff) | |
| download | nixos-config-912fde1c17ee143d805cc7798801b6952dcf8576.tar.gz nixos-config-912fde1c17ee143d805cc7798801b6952dcf8576.zip | |
Creates derivation for shotkey
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index d6e9a26..db55358 100644 --- a/configuration.nix +++ b/configuration.nix @@ -7,6 +7,7 @@ let apps = (import ./packages/sensible-apps/sensible-apps.nix).apps; sensible-apps = pkgs.callPackage ./packages/sensible-apps/pkg.nix {}; + shotkey = pkgs.callPackage ./packages/shotkey/pkg.nix {}; in { imports = [ ./hardware-configuration.nix @@ -81,7 +82,15 @@ in { # User users.users.imsohexy = { isNormalUser = true; - extraGroups = [ "wheel" "input" "audio" "video" "storage" "git" "networkmanager" ]; + extraGroups = [ + "wheel" + "input" + "audio" + "video" + "storage" + "git" + "networkmanager" + ]; shell = pkgs.zsh; }; @@ -133,6 +142,7 @@ in { ffmpeg-full sensible-apps + shotkey pass alsaUtils |
