funni inputs'

This commit is contained in:
Gerg-L 2023-11-01 21:04:20 -04:00
parent f872b7f9d2
commit 42b80afd9c
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
11 changed files with 57 additions and 43 deletions

View file

@ -74,7 +74,7 @@
element-desktop
webcord
;
inherit (nvim-flake.packages.${pkgs.system}) neovim;
inherit (nvim-flake.packages) neovim;
inherit fmt;
lint = pkgs.writeShellApplication {
name = "lint";

View file

@ -1,5 +1,5 @@
{ self, ... }:
{ pkgs, lib, ... }:
{ lib, ... }:
{
# I manually switch this sometimes
config = lib.mkIf false {
@ -35,7 +35,7 @@
"network.target"
"minecraft-server.socket"
];
path = [ self.packages.${pkgs.system}.papermc ];
path = [ self.packages.papermc ];
script = ''
minecraft-server \
-Xms8G \

View file

@ -1,7 +1,6 @@
{ spicetify-nix, ... }:
{ pkgs, ... }:
let
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
spicePkgs = spicetify-nix.legacyPackages;
in
{
imports = [ spicetify-nix.nixosModules.default ];