Add vscode to programs

This commit is contained in:
Armel van Ravels
2026-01-20 10:58:44 +01:00
committed by Armel van Ravels
parent 979f0bd7a1
commit 612392acf0
3 changed files with 12 additions and 1 deletions

View File

@@ -19,7 +19,10 @@
}: }:
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in in
{ {
homeConfigurations = { homeConfigurations = {

View File

@@ -17,6 +17,7 @@
./programs/tmux.nix ./programs/tmux.nix
./programs/git.nix ./programs/git.nix
./programs/libreoffice.nix ./programs/libreoffice.nix
./programs/vscode.nix
./wm/rofi.nix ./wm/rofi.nix
./wm/cursor.nix ./wm/cursor.nix
./wm/dconf.nix ./wm/dconf.nix

7
programs/vscode.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
};
}