[home][modules] split vscode out of develop

This commit is contained in:
2024-06-28 03:07:57 +08:00
parent 6f9de6434c
commit 027636e85b
5 changed files with 25 additions and 16 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
home.username = "origami";
home.homeDirectory = "/home/origami";
programs.home-manager.enable = true;
imports = [
(import ./modules/shell.nix)
(import ./modules/shell-develop.nix)
];
nixpkgs.config.allowUnfreePredicate = _: true;
home.stateVersion = "23.11";
}