massive rearchitecture

This commit is contained in:
2025-01-10 16:11:36 +00:00
parent 95257c8816
commit 618bb4a596
15 changed files with 207 additions and 145 deletions

View File

@@ -0,0 +1,15 @@
{ inputs, config, pkgs, ... }:
{
home.packages = with pkgs;[
git-credential-manager
(with dotnetCorePackages; combinePackages [
sdk_8_0
sdk_9_0
])
jetbrains.rider
azure-cli
azuredatastudio
rustup
];
}

19
home-manager/fonts.nix Normal file
View File

@@ -0,0 +1,19 @@
{ inputs, config, pkgs, ... }:
{
home.packages = with pkgs;[
liberation_ttf
ubuntu-sans
ubuntu-sans-mono
(nerdfonts.override { fonts = [ "SpaceMono" ]; })
];
fonts.fontconfig = {
enable = true;
defaultFonts = {
monospace = [ "Ubuntu Sans Mono" ];
sansSerif = [ "Ubuntu Sans" ];
serif = [ "Liberation Serif" ];
};
};
}

11
home-manager/gaming.nix Normal file
View File

@@ -0,0 +1,11 @@
{ inputs, config, pkgs, ... }:
{
home.packages = with pkgs;[
steamguard-cli
bottles
protontricks
gamescope
inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".ryujinx-greemdev
];
}