initial nix setum with Nina :3

This commit is contained in:
CDaut 2024-02-23 00:18:39 +01:00
commit e0b88992f5
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 212 additions and 0 deletions

47
home.nix Normal file
View file

@ -0,0 +1,47 @@
{ config, pkgs, ... }:
let
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
});
in
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "clemens";
home.homeDirectory = "/home/clemens";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "24.05"; # Please read the comment before changing.
imports = [
./git.nix
./vscode.nix
];
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
zsh
alacritty
polybar
firefox
tex
jetbrains.idea-ultimate
];
# dotfiles
home.file = {
};
# envars
home.sessionVariables = {
EDITOR = "vim";
};
}