mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-04 12:02:09 +02:00
63
home/laptop.nix
Normal file
63
home/laptop.nix
Normal file
@@ -0,0 +1,63 @@
|
||||
{ pkgs, ... }:
|
||||
let variable = import ../variables.nix;
|
||||
in {
|
||||
|
||||
imports = [
|
||||
./themes/laptop.nix
|
||||
./system/laptop.nix
|
||||
./scripts/laptop.nix
|
||||
./apps/laptop.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
username = variable.username;
|
||||
homeDirectory = variable.homeDirectory;
|
||||
|
||||
packages = with pkgs; [
|
||||
swappy
|
||||
imv
|
||||
discord
|
||||
obsidian
|
||||
btop
|
||||
xfce.thunar
|
||||
bitwarden
|
||||
vlc
|
||||
|
||||
# Dev
|
||||
go
|
||||
cargo
|
||||
nodejs
|
||||
python3
|
||||
jq
|
||||
|
||||
# Utils
|
||||
sops # Secrets
|
||||
age # Secrets
|
||||
fd
|
||||
bc
|
||||
gcc
|
||||
blueman
|
||||
zip
|
||||
unzip
|
||||
xdg_utils
|
||||
wget
|
||||
curl
|
||||
neovide
|
||||
wf-recorder
|
||||
|
||||
# Just cool
|
||||
peaclock
|
||||
cbonsai
|
||||
pipes
|
||||
cmatrix
|
||||
|
||||
# Backup
|
||||
vscode
|
||||
firefox
|
||||
tor-browser
|
||||
];
|
||||
|
||||
stateVersion = variable.stateVersion;
|
||||
};
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user