[tohru] Move most user config to home-manager & install VS Code

This commit is contained in:
Katherina Walshe-Grey 2024-05-28 22:53:50 +01:00
parent 30d059d995
commit 1012a3a1de
2 changed files with 40 additions and 14 deletions

38
hosts/tohru/home.nix Normal file
View file

@ -0,0 +1,38 @@
{ config, lib, pkgs, ... }:
{
users.users.bluebird = {
isNormalUser = true;
description = "Bluebird";
extraGroups = [ "wheel" "networkmanager" ];
packages = with pkgs; [
# TODO: move these to home-manager
bitwarden
firefox
tor-browser-bundle-bin
];
};
home-manager.users.bluebird = { pkgs, ... }: {
home.packages = [
pkgs.fortune
pkgs.htop
pkgs.tree
];
programs.git = {
enable = true;
userName = "Katherina Walshe-Grey";
userEmail = "git@katherina.rocks";
};
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
];
};
home.stateVersion = "23.11";
};
}