added another home
This commit is contained in:
parent
b5b14b119e
commit
9209a94b68
2 changed files with 157 additions and 1 deletions
|
@ -15,7 +15,6 @@
|
|||
../shared/rofi.nix
|
||||
../shared/kitty.nix
|
||||
../shared/alacritty.nix
|
||||
../shared/ranger.nix
|
||||
../shared/tmux.nix
|
||||
../shared/vim.nix
|
||||
../shared/fish.nix
|
||||
|
|
157
config/lill-home.nix
Normal file
157
config/lill-home.nix
Normal file
|
@ -0,0 +1,157 @@
|
|||
# This is your home-manager configuration file
|
||||
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
myhostname,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../shared/dwm.nix
|
||||
../shared/dmenu.nix
|
||||
../shared/kitty.nix
|
||||
../shared/alacritty.nix
|
||||
../shared/tmux.nix
|
||||
../shared/fish.nix
|
||||
../shared/git.nix
|
||||
../shared/nixpkgs.nix
|
||||
../shared/firefox.nix
|
||||
../shared/zathura.nix
|
||||
../shared/lazygit.nix
|
||||
../shared/ssh.nix
|
||||
../shared/oh-my-posh.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = _: true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# System
|
||||
xsel
|
||||
unzip
|
||||
zip
|
||||
wget
|
||||
alsa-utils
|
||||
upower
|
||||
gcc
|
||||
gnumake
|
||||
cmake
|
||||
arion
|
||||
htop
|
||||
pavucontrol
|
||||
procps
|
||||
openssh
|
||||
networkmanager
|
||||
fd
|
||||
bat
|
||||
bluez
|
||||
bluez-tools
|
||||
unstable.betterlockscreen
|
||||
tmux
|
||||
unstable.fzf
|
||||
eza
|
||||
btop
|
||||
thttpd
|
||||
xcolor
|
||||
openssl
|
||||
dig
|
||||
jq
|
||||
|
||||
# Dev
|
||||
unstable.hugo
|
||||
tailwindcss
|
||||
nodejs_22
|
||||
go
|
||||
|
||||
#Tools
|
||||
qrencode
|
||||
air
|
||||
git
|
||||
lazydocker
|
||||
kubectl
|
||||
|
||||
#LSP
|
||||
roslyn
|
||||
roslyn-ls
|
||||
python312Packages.python-lsp-server
|
||||
yaml-language-server
|
||||
nil
|
||||
jdt-language-server
|
||||
texlab
|
||||
marksman
|
||||
nodePackages_latest.bash-language-server
|
||||
typescript
|
||||
nodePackages_latest.typescript-language-server
|
||||
nodePackages_latest.vls
|
||||
nodePackages_latest.volar
|
||||
lua-language-server
|
||||
tree-sitter
|
||||
gopls
|
||||
rust-analyzer
|
||||
|
||||
# UI
|
||||
pastel
|
||||
imagemagick
|
||||
|
||||
#VPN
|
||||
openvpn
|
||||
networkmanagerapplet
|
||||
networkmanager-l2tp
|
||||
strongswan
|
||||
|
||||
# Display
|
||||
scrot
|
||||
xbanish
|
||||
feh
|
||||
brightnessctl
|
||||
dunst
|
||||
|
||||
# Documents
|
||||
ripgrep
|
||||
grc
|
||||
# texliveFull
|
||||
pandoc
|
||||
poppler_utils
|
||||
|
||||
#Desktop
|
||||
unstable.feishin
|
||||
firefox
|
||||
unstable.signal-desktop
|
||||
pinta
|
||||
zathura
|
||||
thunderbird
|
||||
alacritty
|
||||
unstable.neovim
|
||||
fastfetch
|
||||
lazygit
|
||||
byzanz
|
||||
remmina
|
||||
|
||||
# Utils
|
||||
speedcrunch
|
||||
|
||||
#Unfree
|
||||
discord
|
||||
];
|
||||
programs.home-manager.enable = true;
|
||||
programs.fish.enable = true;
|
||||
programs.man.generateCaches = false;
|
||||
|
||||
xsession.enable = true;
|
||||
xsession.windowManager.command = if myhostname == "laptop" then "/home/fw/nix/.xinitrc.laptop" else if myhostname == "jobb" then "/home/fw/nix/.xinitrc.jobb" else "/home/fw/nix/.xinitrc";
|
||||
|
||||
home.username = "fw";
|
||||
home.homeDirectory = "/home/fw";
|
||||
|
||||
home.stateVersion = "23.11"; # Did you read the comment?
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue