Compare commits

...

4 Commits

Author SHA1 Message Date
b2e6756d3e removed nvchad added zen 2025-10-10 11:49:10 -05:00
199cfcc92e nvchad 2025-10-10 09:38:49 -05:00
c5efc3fb44 added nerdfonts-martian mono
deleted old shtuff
2025-07-10 13:01:20 -05:00
14de787e82 started neovim but swtiched to lunarvim 2025-07-10 12:12:46 -05:00
11 changed files with 97 additions and 15 deletions

59
flake.lock generated
View File

@@ -168,6 +168,27 @@
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
"zen-browser",
"nixpkgs"
]
},
"locked": {
"lastModified": 1752603129,
"narHash": "sha256-S+wmHhwNQ5Ru689L2Gu8n1OD6s9eU9n9mD827JNR+kw=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "e8c19a3cec2814c754f031ab3ae7316b64da085b",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"hyprcursor": {
"inputs": {
"hyprlang": [
@@ -498,6 +519,22 @@
"type": "github"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1755615617,
"narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "20075955deac2583bb12f07151c2df830ef346b4",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"pre-commit-hooks": {
"inputs": {
"flake-compat": "flake-compat_2",
@@ -526,7 +563,8 @@
"hjem": "hjem",
"hjem-rum": "hjem-rum",
"hyprland": "hyprland",
"nixpkgs": "nixpkgs_2"
"nixpkgs": "nixpkgs_2",
"zen-browser": "zen-browser"
}
},
"systems": {
@@ -605,6 +643,25 @@
"repo": "xdg-desktop-portal-hyprland",
"type": "github"
}
},
"zen-browser": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": "nixpkgs_3"
},
"locked": {
"lastModified": 1759965431,
"narHash": "sha256-HvXr+rOkSZeseOYCruuMKMAUedcDkHOuYpFbnlIPs8Y=",
"owner": "0xc000022070",
"repo": "zen-browser-flake",
"rev": "391a133511ad7e09651b9c3939d8cf8d379766b1",
"type": "github"
},
"original": {
"owner": "0xc000022070",
"repo": "zen-browser-flake",
"type": "github"
}
}
},
"root": "root",

View File

@@ -12,6 +12,11 @@
url = "github:snugnug/hjem-rum";
inputs.nixpkgs.follows = "nixpkgs";
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
#inputs.nixpkgs.follows
};
};
outputs =

View File

@@ -8,6 +8,7 @@
../../modules
];
programs.hyprland.enable = true;
boot.loader.grub.enable = true;

View File

@@ -1,5 +1,6 @@
{
imports = [
./fonts.nix
./hjem.nix
./network.nix
./packages.nix

6
modules/core/fonts.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
nerd-fonts.martian-mono
];
}

View File

@@ -4,6 +4,5 @@
./zsh
./git.nix
./packages.nix
./neovim.nix
];
}

View File

@@ -1,6 +1,4 @@
{
config,
username,
...
}:
{
@@ -11,6 +9,9 @@
name = "poslop";
email = "poslop@archfox.org";
};
core = {
editor = "nvim -f";
};
};
};
}

View File

@@ -1,8 +0,0 @@
_:
{
programs.neovim = {
enable = true;
vimAlias = true;
viAlias = true;
};
}

View File

@@ -1,11 +1,14 @@
{
pkgs,
username,
inputs,
...
}:
{
hjem.users.${username}.packages = with pkgs; [
inputs.zen-browser.packages."${system}".default
neovim
statix
git
zsh

12
modules/home/zsh/.zshrc Normal file
View File

@@ -0,0 +1,12 @@
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=10000
setopt autocd extendedglob nomatch notify
unsetopt beep
bindkey -v
zstyle :compinstall filename '/home/poslop/.zshrc'
autoload -Uz compinit
compinit

View File

@@ -1,6 +1,11 @@
{ username, ... }:
{
config.hjem.users.${username}.rum.programs.zsh = {
enable = true;
# hj.rum.programs.zsh = {
# enable = true;
# };
hj = {
files = {
".zshrc".source = ./.zshrc;
};
};
}