This commit is contained in:
biscuit
2025-06-18 12:25:27 -05:00
parent 74f26f5997
commit ac41162a6e
4 changed files with 28 additions and 33 deletions
+1
View File
@@ -1,5 +1,6 @@
{...}: { {...}: {
imports = [ imports = [
../../pkgs/btop/default.nix ../../pkgs/btop/default.nix
../../pkgs/matugen/default.nix
]; ];
} }
-9
View File
@@ -1,9 +0,0 @@
{
pkgs,
inputs,
...
}: {
imports = [
../pkgs/matugen/default.nix
];
}
+2 -3
View File
@@ -1,9 +1,8 @@
{ {
pkgs, pkgs,
inputs, inputs,
system,
... ...
}: { }: {
imports = [ imports = [inputs.matugen.nixosModules.default];
inputs.matugen.packages.${pkgs.system}.default
];
} }
+25 -21
View File
@@ -5,34 +5,38 @@
touchpadSupport, touchpadSupport,
... ...
}: { }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs;
python3 [
python3Packages.pip python3
python3Packages.pygobject3 python3Packages.pip
python3Packages.setuptools python3Packages.pygobject3
python3Packages.wheel python3Packages.setuptools
python3Packages.wheel
gobject-introspection gobject-introspection
gtk3 gtk3
libxml2 libxml2
cargo cargo
gcc gcc
rustc rustc
nodejs nodejs
yarn yarn
busybox busybox
p7zip p7zip
btop btop
tldr tldr
jq jq
solaar solaar
]; ]
++ [
inputs.matugen.packages.${pkgs.system}.default
];
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;