Split home config
This commit is contained in:
parent
a6613447a0
commit
fcfa346eec
7 changed files with 125 additions and 122 deletions
15
nixos/cli.nix
Normal file
15
nixos/cli.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
||||||
|
cabal-install stack hsetroot lm_sensors
|
||||||
|
wirelesstools ranger apvlv
|
||||||
|
fontconfig rustup gcc gdb
|
||||||
|
binutils veracrypt gitAndTools.diff-so-fancy
|
||||||
|
restic ghc jq awscli
|
||||||
|
hugo mercurial terraform
|
||||||
|
unzip aria
|
||||||
|
mono calcurse file python37Packages.binwalk-full
|
||||||
|
];
|
||||||
|
}
|
17
nixos/gui.nix
Normal file
17
nixos/gui.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
passff-host
|
||||||
|
gnome3.gnome-screenshot
|
||||||
|
xpdf apvlv unstable.xidlehook blueman
|
||||||
|
fontconfig xclip gimp glxinfo
|
||||||
|
unstable.notable evince signal-desktop
|
||||||
|
libreoffice unstable.tor-browser-bundle-bin vlc
|
||||||
|
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
|
||||||
|
(wine.override { wineBuild = "wineWow"; }) winetricks
|
||||||
|
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
|
||||||
|
slack discord obs-studio
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
|
@ -13,89 +13,18 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
|
||||||
(
|
|
||||||
neovim.override {
|
|
||||||
vimAlias = true;
|
|
||||||
configure = {
|
|
||||||
customRC = ''
|
|
||||||
if filereadable($HOME . "/.vimrc")
|
|
||||||
source $HOME/.vimrc
|
|
||||||
endif
|
|
||||||
'';
|
|
||||||
|
|
||||||
vam.knownPlugins = unstable.vimPlugins;
|
home.sessionVariables = {
|
||||||
vam.pluginDictionaries = [
|
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
||||||
{ names = [
|
};
|
||||||
"ack-vim"
|
|
||||||
"ctrlp-vim"
|
|
||||||
"editorconfig-vim"
|
|
||||||
"fzf-vim"
|
|
||||||
"nerdtree"
|
|
||||||
"nerdtree-git-plugin"
|
|
||||||
"rust-vim"
|
|
||||||
"tabular"
|
|
||||||
"vim-airline"
|
|
||||||
"vim-airline-themes"
|
|
||||||
"vim-autoformat"
|
|
||||||
"vim-colors-solarized"
|
|
||||||
"vim-dirdiff"
|
|
||||||
"vim-dispatch"
|
|
||||||
"vim-fugitive"
|
|
||||||
"vim-gitgutter"
|
|
||||||
"vim-markdown"
|
|
||||||
"vim-nix"
|
|
||||||
"vim-sensible"
|
|
||||||
"vim-startify"
|
|
||||||
"vim-surround"
|
|
||||||
"vim-toml"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
};})
|
imports = [
|
||||||
wget git gnupg curl tmux python36Packages.glances htop atop powertop ripgrep-all fd dnsutils
|
./programs/tmux.nix
|
||||||
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
./programs/zsh.nix
|
||||||
passff-host
|
./programs/git.nix
|
||||||
cabal-install stack hsetroot lm_sensors gnome3.gnome-screenshot
|
./programs/vim.nix
|
||||||
wirelesstools ranger xpdf apvlv unstable.xidlehook blueman
|
./programs.nix
|
||||||
fontconfig nodejs rustup gcc gdb
|
./links.nix
|
||||||
binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy
|
./cli.nix
|
||||||
restic glxinfo ghc
|
];
|
||||||
jq awscli
|
}
|
||||||
mercurial terraform unzip aria
|
|
||||||
mono calcurse fbreader file python37Packages.binwalk-full
|
|
||||||
];
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
|
||||||
};
|
|
||||||
|
|
||||||
home.file.".vimrc".source = ~/dev/dotfiles/.vimrc.nixos;
|
|
||||||
home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix;
|
|
||||||
home.file.".mozilla/native-messaging-hosts/passff.json".source = "${pkgs.passff-host}/share/passff-host/passff.json";
|
|
||||||
|
|
||||||
imports = [
|
|
||||||
./programs/tmux.nix
|
|
||||||
./programs/zsh.nix
|
|
||||||
./programs/git.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
home-manager.enable = true;
|
|
||||||
|
|
||||||
z-lua = {
|
|
||||||
enable = true;
|
|
||||||
enableAliases = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
enableZshIntegration = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
rofi.enable = true;
|
|
||||||
fzf.enable = true;
|
|
||||||
chromium.enable = true;
|
|
||||||
go.enable = true;
|
|
||||||
bat.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -13,23 +13,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
|
||||||
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
|
||||||
passff-host
|
|
||||||
cabal-install stack hsetroot lm_sensors gnome3.gnome-screenshot
|
|
||||||
wirelesstools ranger xpdf apvlv unstable.xidlehook blueman
|
|
||||||
fontconfig nodejs rustup gcc gdb
|
|
||||||
binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy
|
|
||||||
openjdk gimp restic glxinfo discord ghc
|
|
||||||
unstable.notable jq awscli evince signal-desktop
|
|
||||||
nodejs-10_x hugo mercurial terraform libreoffice
|
|
||||||
unzip unstable.tor-browser-bundle-bin aria vlc
|
|
||||||
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
|
|
||||||
(wine.override { wineBuild = "wineWow"; }) winetricks
|
|
||||||
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
|
|
||||||
mono calcurse calibre fbreader file python37Packages.binwalk-full
|
|
||||||
slack discord obs-studio kpcli
|
|
||||||
];
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
TERMINAL="termite";
|
TERMINAL="termite";
|
||||||
|
@ -37,39 +20,24 @@ in
|
||||||
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".vimrc".source = ~/dev/dotfiles/.vimrc.nixos;
|
|
||||||
home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix;
|
|
||||||
home.file.".mozilla/native-messaging-hosts/passff.json".source = "${pkgs.passff-host}/share/passff-host/passff.json";
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./programs/tmux.nix
|
./programs/tmux.nix
|
||||||
./programs/zsh.nix
|
./programs/zsh.nix
|
||||||
./programs/termite.nix
|
./programs/termite.nix
|
||||||
./programs/git.nix
|
./programs/git.nix
|
||||||
|
./programs/vim.nix
|
||||||
|
./programs.nix
|
||||||
|
./links.nix
|
||||||
./user-xsession.nix
|
./user-xsession.nix
|
||||||
|
./cli.nix
|
||||||
|
./gui.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
|
||||||
home-manager.enable = true;
|
|
||||||
|
|
||||||
z-lua = {
|
|
||||||
enable = true;
|
|
||||||
enableAliases = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
enableZshIntegration = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
rofi.enable = true;
|
|
||||||
fzf.enable = true;
|
|
||||||
chromium.enable = true;
|
|
||||||
go.enable = true;
|
|
||||||
bat.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
7
nixos/links.nix
Normal file
7
nixos/links.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".vimrc".source = ~/dev/dotfiles/.vimrc.nixos;
|
||||||
|
home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix;
|
||||||
|
home.file.".mozilla/native-messaging-hosts/passff.json".source = "${pkgs.passff-host}/share/passff-host/passff.json";
|
||||||
|
}
|
20
nixos/programs.nix
Normal file
20
nixos/programs.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs = {
|
||||||
|
home-manager.enable = true;
|
||||||
|
|
||||||
|
z-lua = {
|
||||||
|
enable = true;
|
||||||
|
enableAliases = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
rofi.enable = true;
|
||||||
|
fzf.enable = true;
|
||||||
|
chromium.enable = true;
|
||||||
|
go.enable = true;
|
||||||
|
bat.enable = true;
|
||||||
|
};
|
||||||
|
}
|
47
nixos/programs/vim.nix
Normal file
47
nixos/programs/vim.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
(
|
||||||
|
neovim.override {
|
||||||
|
vimAlias = true;
|
||||||
|
configure = {
|
||||||
|
customRC = ''
|
||||||
|
if filereadable($HOME . "/.vimrc")
|
||||||
|
source $HOME/.vimrc
|
||||||
|
endif
|
||||||
|
'';
|
||||||
|
|
||||||
|
vam.knownPlugins = unstable.vimPlugins;
|
||||||
|
vam.pluginDictionaries = [
|
||||||
|
{ names = [
|
||||||
|
"ack-vim"
|
||||||
|
"ctrlp-vim"
|
||||||
|
"editorconfig-vim"
|
||||||
|
"fzf-vim"
|
||||||
|
"nerdtree"
|
||||||
|
"nerdtree-git-plugin"
|
||||||
|
"rust-vim"
|
||||||
|
"tabular"
|
||||||
|
"vim-airline"
|
||||||
|
"vim-airline-themes"
|
||||||
|
"vim-autoformat"
|
||||||
|
"vim-colors-solarized"
|
||||||
|
"vim-dirdiff"
|
||||||
|
"vim-dispatch"
|
||||||
|
"vim-fugitive"
|
||||||
|
"vim-gitgutter"
|
||||||
|
"vim-markdown"
|
||||||
|
"vim-nix"
|
||||||
|
"vim-sensible"
|
||||||
|
"vim-startify"
|
||||||
|
"vim-surround"
|
||||||
|
"vim-toml"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
};})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue