feat: initial commit of NixOS on my Infinitybook
This commit is contained in:
parent
70f37ec8ae
commit
4e5ab16937
6 changed files with 286 additions and 45 deletions
|
@ -15,13 +15,13 @@ in {
|
|||
package = pkgs.neovim-nightly;
|
||||
|
||||
plugins = with pkgs; [
|
||||
customVim.tabline-vim
|
||||
customVim.vim-astro
|
||||
customVim.vim-caser
|
||||
customVim.vim-heritage
|
||||
customVim.vim-just
|
||||
customVim.vim-textobj-xmlattr
|
||||
customVim.vim-visual-star-search
|
||||
# customVim.tabline-vim
|
||||
# customVim.vim-astro
|
||||
# customVim.vim-caser
|
||||
# customVim.vim-heritage
|
||||
# customVim.vim-just
|
||||
# customVim.vim-textobj-xmlattr
|
||||
# customVim.vim-visual-star-search
|
||||
|
||||
vimPlugins.comment-nvim
|
||||
vimPlugins.dial-nvim
|
||||
|
|
49
home-manager/nixedo.nix
Normal file
49
home-manager/nixedo.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue