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