feat: initial commit of NixOS on my Infinitybook

This commit is contained in:
Oliver Davies 2023-03-30 19:15:51 +01:00
parent 70f37ec8ae
commit 4e5ab16937
6 changed files with 286 additions and 45 deletions

49
home-manager/nixedo.nix Normal file
View file

@ -0,0 +1,49 @@
{ config, lib, pkgs, ... }:
{
imports = [
./modules/common.nix
./modules/git.nix
./modules/home-manager.nix
./modules/tmux.nix
./modules/zsh.nix
];
home.stateVersion = "22.05";
home.username = "opdavies";
home.homeDirectory = "/home/opdavies";
programs.alacritty = {
enable = true;
settings = {
window.padding = {
x = 15;
y = 15;
};
font = {
size = 12.0;
normal.family = "JetBrainsMono Nerd Font";
offset.y = 12;
glyph_offset.y = 6;
};
shell = {
program = "zsh";
};
};
};
home.packages = with pkgs; [
discord
slack
teams
vlc
xcape
zoom-us
];
}