Updates to ssh pub keys and remove packages from profile

This commit is contained in:
willemml 2024-12-17 07:11:09 -07:00
parent ac4c3e32da
commit 97c49c2626
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
5 changed files with 33 additions and 58 deletions

View file

@ -9,13 +9,13 @@
zsh.prompt = "\n%B%F{cyan}%m:%F{blue}%~\n%F{green}$ %f%"; zsh.prompt = "\n%B%F{cyan}%m:%F{blue}%~\n%F{green}$ %f%";
zsh.rprompt = "%B%F{red}%*%f%b"; zsh.rprompt = "%B%F{red}%*%f%b";
timezone = "America/Vancouver"; timezone = "America/Edmonton";
username = "willem"; username = "willem";
wallpapers = import ./wallpapers.nix; wallpapers = import ./wallpapers.nix;
sshAuthorizedKeyFiles = [./sshpubkeys/willem-nixbox ./sshpubkeys/willem-thinkpad ./sshpubkeys/willem-zeus]; sshAuthorizedKeyFiles = [./sshpubkeys/willem-nixbox ./sshpubkeys/willem-thinkpad ./sshpubkeys/willem-zeus ./sshpubkeys/willem-evrlaptop];
zerotier.networks = ["17d709436ca2929d"]; zerotier.networks = ["17d709436ca2929d"];
} }

View file

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDIN4HCNvddK9tFW8szanz5Msd6h4l6XzjWAdnSMJeR6 evr\wleitso@SPOL2186861

View file

@ -9,13 +9,9 @@
./programs/default.nix ./programs/default.nix
./modules/nix/pkgs-config.nix ./modules/nix/pkgs-config.nix
./modules/nix/use-flake-pkgs.nix ./modules/nix/use-flake-pkgs.nix
../common/stylix.nix
inputs.nix-index-database.hmModules.nix-index inputs.nix-index-database.hmModules.nix-index
inputs.stylix.homeManagerModules.stylix
]; ];
stylix.enable = true;
home = { home = {
username = globals.username; username = globals.username;

View file

@ -3,57 +3,33 @@
lib, lib,
inputs, inputs,
... ...
}: let }: {
node-packages = with pkgs.nodePackages; [ home.packages = with pkgs; [
bash-language-server bash
prettier bat
cachix
coreutils
curl
devenv
fd
findutils
gawk
jq
nix-tree
nix-zsh-completions
nixfmt-classic
nixpkgs-fmt
nmap
openssh
pass-git-helper
pinentry-curses
pv
ripgrep
rsync
sqlite
tealdeer
unzip
yq
zsh-completions
]; ];
fenix-rust = pkgs.fenix.combine (with pkgs.fenix; [
latest.toolchain
targets.thumbv7em-none-eabihf.latest.rust-std
]);
extras = [fenix-rust] ++ node-packages;
in {
home.packages =
(with pkgs; [
alejandra
bash
bat
black
cachix
coreutils
curl
docker
docker-compose
dotnet-sdk
fd
findutils
gawk
git-crypt
jq
nix-tree
nix-zsh-completions
nixfmt-classic
nixpkgs-fmt
nmap
nodejs
omnisharp-roslyn
openssh
pass-git-helper
pinentry-curses
pv
ripgrep
rsync
shellcheck
shfmt
sqlite
tealdeer
unzip
vhdl-ls
yq
vhdl-ls
vscode-langservers-extracted
zsh-completions
])
++ extras;
} }

View file

@ -11,6 +11,8 @@ in {
../modules/lemurs.nix ../modules/lemurs.nix
]; ];
programs.steam.enable = true;
programs.hyprland.enable = true; programs.hyprland.enable = true;
programs.hyprland.package = hyprpkgs.hyprland; programs.hyprland.package = hyprpkgs.hyprland;
programs.hyprland.portalPackage = hyprpkgs.xdg-desktop-portal-hyprland; programs.hyprland.portalPackage = hyprpkgs.xdg-desktop-portal-hyprland;