mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-12 16:39:44 +00:00
allow unfree home.niz
This commit is contained in:
parent
9ad6882e0e
commit
aafd1c76d5
1 changed files with 6 additions and 1 deletions
7
home.nix
7
home.nix
|
@ -21,6 +21,11 @@
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.joypixels.acceptLicense = true;
|
||||
|
||||
# Manage session variables
|
||||
home.sessionVariables = {
|
||||
NIXPKGS_ALLOW_UNFREE=1;
|
||||
};
|
||||
|
||||
# The home.packages option allows you to install Nix packages into your
|
||||
# environment.
|
||||
home.packages = with pkgs; [
|
||||
|
@ -56,7 +61,7 @@
|
|||
enable = true;
|
||||
enableCompletion = true;
|
||||
enableAutosuggestions = true;
|
||||
enableSyntaxHighlighting = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
theme = "ys";
|
||||
|
|
Loading…
Reference in a new issue