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" "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": { "hyprcursor": {
"inputs": { "inputs": {
"hyprlang": [ "hyprlang": [
@@ -498,6 +519,22 @@
"type": "github" "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": { "pre-commit-hooks": {
"inputs": { "inputs": {
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
@@ -526,7 +563,8 @@
"hjem": "hjem", "hjem": "hjem",
"hjem-rum": "hjem-rum", "hjem-rum": "hjem-rum",
"hyprland": "hyprland", "hyprland": "hyprland",
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2",
"zen-browser": "zen-browser"
} }
}, },
"systems": { "systems": {
@@ -605,6 +643,25 @@
"repo": "xdg-desktop-portal-hyprland", "repo": "xdg-desktop-portal-hyprland",
"type": "github" "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", "root": "root",

View File

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

View File

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

View File

@@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./fonts.nix
./hjem.nix ./hjem.nix
./network.nix ./network.nix
./packages.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 ./zsh
./git.nix ./git.nix
./packages.nix ./packages.nix
./neovim.nix
]; ];
} }

View File

@@ -1,6 +1,4 @@
{ {
config,
username,
... ...
}: }:
{ {
@@ -11,6 +9,9 @@
name = "poslop"; name = "poslop";
email = "poslop@archfox.org"; 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, pkgs,
username, username,
inputs,
... ...
}: }:
{ {
hjem.users.${username}.packages = with pkgs; [ hjem.users.${username}.packages = with pkgs; [
inputs.zen-browser.packages."${system}".default
neovim
statix statix
git git
zsh 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 = { # hj.rum.programs.zsh = {
enable = true; # enable = true;
# };
hj = {
files = {
".zshrc".source = ./.zshrc;
};
}; };
} }