switch shadowfax to workstation and remove sworkstation now that it's fully capable

This commit is contained in:
Joseph Hanson 2025-03-10 12:44:15 -05:00
parent a57fc1c6c5
commit a5657bb002
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 1 additions and 39 deletions

View file

@ -107,7 +107,7 @@
"${nixpkgs-unstable}/nixos/modules/services/web-servers/caddy/default.nix"
./nixos/profiles/role-dev.nix
./nixos/profiles/role-server.nix
{home-manager.users.jahanson = ./nixos/home/jahanson/sworkstation.nix;}
{home-manager.users.jahanson = ./nixos/home/jahanson/workstation.nix;}
];
};

View file

@ -1,38 +0,0 @@
{pkgs, ...}: {
imports = [
./global.nix
];
config = {
myHome = {
de.hyprland.enable = true;
programs = {
firefox.enable = true;
thunderbird.enable = true;
};
shell = {
# soon(tm)
# ghostty.enable = true;
git = {
enable = true;
username = "Joseph Hanson";
email = "joe@veri.dev";
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDSAmssproxG+KsVn2DfuteBAemHrmmAFzCtldpKl4J";
};
};
};
home = {
# Install these packages for my user
packages = with pkgs; [
# apps
solaar # open source manager for logitech unifying receivers
unstable.seabird
# unstable.vesktop # gpu issues. Using the flatpak version solves this issue.
vlc
yt-dlp
];
};
};
}