diff --git a/.gitignore b/.gitignore index 3c3629e..4bd4a91 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ node_modules +./secrets.nix + diff --git a/modules/applications/neovim.nix b/modules/applications/neovim.nix index 88b39a5..0adf766 100644 --- a/modules/applications/neovim.nix +++ b/modules/applications/neovim.nix @@ -43,6 +43,7 @@ let ''; base = pkgs.neovim-nightly; + # base = pkgs.neovim; neovim = pkgs.symlinkJoin { inherit (base) name meta; diff --git a/modules/users.nix b/modules/users.nix index a365563..3daac97 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -1,15 +1,5 @@ { pkgs, ... }: with import ../secrets.nix; { - # options = { - # myUser = { - # type = lib.types.string; - # default = ""; - # }; - # }; - - # config = { - # myUser = "adrielus"; - # Disable asking for password for sudo security.sudo.extraRules = [ { diff --git a/secrets.nix b/secrets.nix deleted file mode 100644 index 43abbe0..0000000 Binary files a/secrets.nix and /dev/null differ