Compare commits

..

2 Commits

Author SHA1 Message Date
257248db82 fixing and importing packages.nix 2025-11-19 21:45:15 +01:00
d1dc44f4d4 not working nvim config 2025-11-19 21:44:28 +01:00
3 changed files with 22 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
{
pkgs,
...
}:
let
nvf = import (builtins.fetchTarball {
url = "https://github.com/notashelf/nvf/archive/v0.7.tar.gz";
# Optionally, you can add 'sha256' for verification and caching
# sha256 = "<sha256>";
});
in{
imports = [
nvf.nixosModules.nvf
];
programs.nvf = {
enable = true;
};
}

View File

@@ -1,5 +1,5 @@
{pkgs, ...}: {
users.users.users.packages = with pkgs; [
{pkgs, user, ...}: {
users.users.${user}.packages = with pkgs; [
btop
ncdu
tmux

View File

@@ -4,6 +4,7 @@ in {
imports = [
(import ./zsh.nix {inherit pkgs user;})
./zoxide.nix
(import ./packages.nix {inherit pkgs user;})
];
# Define user account and dont forget to set a password with 'passwd'