Separate System and User packages

- Move user programs out of systems section and int
  user section
- Install user packages with home manager rather than
  system wide
This commit is contained in:
Sravan Balaji
2024-03-27 16:27:20 -04:00
parent 59f88dad0f
commit 7f320b85d4
43 changed files with 120 additions and 107 deletions

View File

@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [
./vscode.nix
];
}

View File

@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
home.packages = (with pkgs; [
vscode
]);
}