Compare commits
5 Commits
32cfdc0f3d
..
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 5cd20d6a35 | |||
| bb19efac38 | |||
| 9e56c695f0 | |||
| 2a17c5ecdf | |||
| 5a7f060075 |
@@ -8,7 +8,6 @@
|
||||
./packages
|
||||
./timezone.nix
|
||||
./nix.nix
|
||||
./pipewire.nix
|
||||
./program.nix
|
||||
./user.nix
|
||||
./ssh.nix
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./user.nix
|
||||
./dev.nix
|
||||
./system.nix
|
||||
./utils.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{ pkgs, username, ... }:
|
||||
{
|
||||
hjem.users.${username}.packages = with pkgs; [
|
||||
# general
|
||||
neovim
|
||||
git
|
||||
|
||||
# lua
|
||||
stylua
|
||||
lua-language-server
|
||||
|
||||
# nix
|
||||
nixd
|
||||
nixfmt
|
||||
statix
|
||||
];
|
||||
}
|
||||
@@ -1,18 +1,11 @@
|
||||
{ pkgs, username, ... }:
|
||||
{
|
||||
hjem.users.${username}.packages = with pkgs; [
|
||||
clang
|
||||
lld
|
||||
nixfmt
|
||||
llvmPackages.bintools
|
||||
tlrc
|
||||
unzip
|
||||
neovim
|
||||
btop
|
||||
curl
|
||||
git
|
||||
neofetch
|
||||
statix
|
||||
tlrc
|
||||
unzip
|
||||
wget
|
||||
wl-clipboard
|
||||
];
|
||||
@@ -11,11 +11,18 @@ zstyle :compinstall filename '/home/poslop/.zshrc'
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
|
||||
alias ga='git add'
|
||||
alias gc='git commit'
|
||||
alias gp='git push'
|
||||
alias gs='git status'
|
||||
|
||||
ga() {
|
||||
if [[ -z "$1" ]]; then
|
||||
git add -u
|
||||
else
|
||||
git add "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
rerice() {
|
||||
local flake_dir="/etc/rice-flakes"
|
||||
host="${1:-$(hostname -s)}"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./hyprland
|
||||
./pipewire.nix
|
||||
./packages.nix
|
||||
./fonts.nix
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user