fix some lint errors
This commit is contained in:
parent
053026966a
commit
39cd2bc920
4 changed files with 4 additions and 5 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
outputs = { nixpkgs, home-manager, nixvim-flake, ... }:
|
outputs = { nixpkgs, home-manager, nixvim-flake, ... }:
|
||||||
let
|
let
|
||||||
lib = nixpkgs.lib;
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
inputs.nixvim-flake = nixvim-flake;
|
inputs.nixvim-flake = nixvim-flake;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{ config, lib, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
|
|
|
||||||
4
home.nix
4
home.nix
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, pkgs, inputs, ... }: let
|
{ pkgs, inputs, ... }: let
|
||||||
username = "khais";
|
username = "khais";
|
||||||
in {
|
in {
|
||||||
home = {
|
home = {
|
||||||
|
|
@ -16,7 +16,7 @@ in {
|
||||||
# editors
|
# editors
|
||||||
zed-editor
|
zed-editor
|
||||||
# nixvim
|
# nixvim
|
||||||
inputs.nixvim-flake.packages.${pkgs.system}.default
|
inputs.nixvim-flake.packages.${system}.default
|
||||||
];
|
];
|
||||||
|
|
||||||
file = {
|
file = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue