chore: format flake.nix
This commit is contained in:
parent
a040a98fee
commit
8139070d69
1 changed files with 15 additions and 14 deletions
21
flake.nix
21
flake.nix
|
@ -7,11 +7,9 @@
|
|||
home-manager,
|
||||
nvf,
|
||||
...
|
||||
} @ inputs:
|
||||
let
|
||||
args = { inherit self inputs; };
|
||||
in
|
||||
{
|
||||
} @ inputs: let
|
||||
args = {inherit self inputs;};
|
||||
in {
|
||||
# System Configurations
|
||||
nixosConfigurations = {
|
||||
nemesis = nixpkgs.lib.nixosSystem {
|
||||
|
@ -20,7 +18,8 @@
|
|||
./systems/nemesis.nix
|
||||
|
||||
# Add the home-manager user
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
# Don't instantiate the home-manager instance of nixpkgs
|
||||
home-manager.useGlobalPkgs = true;
|
||||
# Install user packages to /etc/profiles
|
||||
|
@ -37,10 +36,12 @@
|
|||
};
|
||||
|
||||
# Packages
|
||||
packages.x86_64-linux.nvf = (inputs.nvf.lib.neovimConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
modules = [ ./packages/nvf.nix ];
|
||||
}).neovim;
|
||||
packages.x86_64-linux.nvf =
|
||||
(inputs.nvf.lib.neovimConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
modules = [./packages/nvf.nix];
|
||||
})
|
||||
.neovim;
|
||||
};
|
||||
|
||||
inputs = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue