This commit is contained in:
Michael Thomson 2024-04-18 13:40:47 -04:00
parent c3e6098a9b
commit 67a1223421
No known key found for this signature in database
4 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{ {
description = "A simple NixOS flake"; description = "Michael's Nix Config";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";

View File

@ -31,7 +31,6 @@
hello hello
]; ];
environment.variables = { environment.variables = {
EDITOR = "nvim"; EDITOR = "nvim";
ZK_NOTEBOOK_DIR = "~/notes"; ZK_NOTEBOOK_DIR = "~/notes";

View File

@ -35,8 +35,6 @@
spotify-player spotify-player
neofetch neofetch
jq jq
fzf
ripgrep
tldr tldr
cowsay cowsay
lazygit lazygit

View File

@ -3,6 +3,8 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
neovim neovim
fzf
ripgrep
]; ];
home.file.".config/nvim/" = { home.file.".config/nvim/" = {
source = ./nvim; source = ./nvim;