mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-09 10:41:14 +01:00
16 lines
297 B
Nix
16 lines
297 B
Nix
{pkgs, lib, ...}:
|
|
let
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
|
in
|
|
{
|
|
home-manager.users.gunalx = {
|
|
#vscode with home manager
|
|
programs.vscode = {
|
|
enable = true;
|
|
enableUpdateCheck = false;
|
|
package = unstable.vscode-fhs;
|
|
|
|
};
|
|
};
|
|
}
|