split neovim config
This commit is contained in:
parent
8fb6118bcd
commit
5df8317a4a
19 changed files with 239 additions and 195 deletions
31
home/common.nix
Executable file
31
home/common.nix
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
imports = ( import ../modules/programs );
|
||||
programs.home-manager.enable = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix = {
|
||||
settings = {
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
package = pkgs.nixFlakes;
|
||||
registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
home = {
|
||||
stateVersion = "22.11";
|
||||
packages = with pkgs; [
|
||||
pulseaudio
|
||||
pulsemixer
|
||||
alsa-utils
|
||||
appimage-run
|
||||
wireguard-tools
|
||||
spleen
|
||||
];
|
||||
};
|
||||
|
||||
xdg.enable = true;
|
||||
fonts.fontconfig.enable = true;
|
||||
systemd.user.startServices = "sd-switch";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue