diff options
author | Aditya <bluenerd@protonmail.com> | 2023-03-27 12:13:26 +0530 |
---|---|---|
committer | Aditya <bluenerd@protonmail.com> | 2023-03-27 12:13:26 +0530 |
commit | 9172a287646d2be913783eb98e7c029439c6c013 (patch) | |
tree | 301b1d48ead306560d1764826261c94ecf8aae69 /nixpkgs | |
parent | 817ac2d3bd50dab7b8c45756139d59616fd8c7be (diff) |
add non-nix config
Diffstat (limited to 'nixpkgs')
-rw-r--r-- | nixpkgs/home.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/nixpkgs/home.nix b/nixpkgs/home.nix index 353e06b..3bbb1bc 100644 --- a/nixpkgs/home.nix +++ b/nixpkgs/home.nix @@ -14,8 +14,18 @@ # You can update Home Manager without changing this value. See # the Home Manager release notes for a list of state version # changes in each release. - home.stateVersion = "22.05"; + home.stateVersion = "unstable"; # Let Home Manager install and manage itself. programs.home-manager.enable = true; + + nixpkgs.config.allowUnfree = true; + + targets.genericLinux.enable = true; + + home.packages = [ + pkgs.kotlin + ]; + + programs.emacs.enable = yes; } |