massive rearchitecture
This commit is contained in:
15
home-manager/development/tools.nix
Normal file
15
home-manager/development/tools.nix
Normal 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
19
home-manager/fonts.nix
Normal 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
11
home-manager/gaming.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user