initial nix setum with Nina :3
This commit is contained in:
commit
e0b88992f5
6 changed files with 212 additions and 0 deletions
47
home.nix
Normal file
47
home.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue