unstable intellij
This commit is contained in:
parent
554a906dbf
commit
78270430db
2 changed files with 37 additions and 33 deletions
|
@ -79,7 +79,7 @@
|
||||||
smolboi = inputs.nixpkgs.lib.nixosSystem {
|
smolboi = inputs.nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
pkgs-unstable = inputs.nixunstable;
|
pkgs-unstable = inputs.nixunstable.legacyPackages.x86_64-linux;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./systems/smolboi/configuration.nix
|
./systems/smolboi/configuration.nix
|
||||||
|
@ -94,6 +94,9 @@
|
||||||
inputs.nixos-hardware.nixosModules.gigabyte-b550
|
inputs.nixos-hardware.nixosModules.gigabyte-b550
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
|
home-manager.extraSpecialArgs = {
|
||||||
|
pkgs-unstable = inputs.nixunstable.legacyPackages.x86_64-linux;
|
||||||
|
};
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.users.cdombroski = import ./systems/smolboi/home.nix;
|
home-manager.users.cdombroski = import ./systems/smolboi/home.nix;
|
||||||
}
|
}
|
||||||
|
@ -102,7 +105,7 @@
|
||||||
zeus = inputs.nixpkgs.lib.nixosSystem {
|
zeus = inputs.nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
pkgs-unstable = inputs.nixunstable;
|
pkgs-unstable = inputs.nixunstable.legacyPackages.x86_64-linux;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./systems/zeus/configuration.nix
|
./systems/zeus/configuration.nix
|
||||||
|
@ -117,7 +120,7 @@
|
||||||
orangepihole = inputs.nixpkgs.lib.nixosSystem {
|
orangepihole = inputs.nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
pkgs-unstable = inputs.nixunstable;
|
pkgs-unstable = inputs.nixunstable.legacyPackages.aarch64-linux;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./systems/orangepihole/configuration.nix
|
./systems/orangepihole/configuration.nix
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
config,
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
pkgs-unstable,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -22,34 +23,34 @@
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = with pkgs; [
|
home.packages = [
|
||||||
element-desktop
|
pkgs.element-desktop
|
||||||
discord
|
pkgs.discord
|
||||||
openrgb-with-all-plugins
|
pkgs.openrgb-with-all-plugins
|
||||||
keepassxc
|
pkgs.keepassxc
|
||||||
heroic
|
pkgs.heroic
|
||||||
r2modman
|
pkgs.r2modman
|
||||||
mangohud
|
pkgs.mangohud
|
||||||
hack-font
|
pkgs.hack-font
|
||||||
htop
|
pkgs.htop
|
||||||
jellyfin-media-player
|
pkgs.jellyfin-media-player
|
||||||
konversation
|
pkgs.konversation
|
||||||
nixd
|
pkgs.nixd
|
||||||
yakuake
|
pkgs.yakuake
|
||||||
mgba
|
pkgs.mgba
|
||||||
vlc
|
pkgs.vlc
|
||||||
jetbrains.idea-community
|
pkgs-unstable.jetbrains.idea-community
|
||||||
dolphin-emu-primehack
|
pkgs.dolphin-emu-primehack
|
||||||
steamtinkerlaunch
|
pkgs.steamtinkerlaunch
|
||||||
mangohud
|
pkgs.mangohud
|
||||||
lutris
|
pkgs.lutris
|
||||||
knossosnet
|
pkgs.knossosnet
|
||||||
lilypond
|
pkgs.lilypond
|
||||||
musescore
|
pkgs.musescore
|
||||||
protontricks
|
pkgs.protontricks
|
||||||
protonup-qt
|
pkgs.protonup-qt
|
||||||
(retroarch.override {
|
(pkgs.retroarch.override {
|
||||||
cores = with libretro; [
|
cores = with pkgs.libretro; [
|
||||||
beetle-psx-hw
|
beetle-psx-hw
|
||||||
pcsx2
|
pcsx2
|
||||||
mesen
|
mesen
|
||||||
|
|
Loading…
Reference in a new issue