upd
This commit is contained in:
@@ -33,50 +33,50 @@
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
# TODO: migrate to another nix file.
|
||||
packages.${system}.default = pkgs.stdenv.mkDerivation {
|
||||
pname = "marble";
|
||||
src = ./marble;
|
||||
dontUnpack = true;
|
||||
|
||||
nativeBuildInputs = with pkgs; [
|
||||
wrapGAppsHook
|
||||
gobject-introspection
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
(with astal.packages.${system}; [
|
||||
astal3
|
||||
io
|
||||
apps
|
||||
battery
|
||||
bluetooth
|
||||
hyprland
|
||||
mpris
|
||||
network
|
||||
notifd
|
||||
powerprofiles
|
||||
tray
|
||||
wireplumber
|
||||
])
|
||||
++ (with pkgs; [
|
||||
gjs
|
||||
]);
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(
|
||||
--prefix PATH : ${with pkgs;
|
||||
lib.makeBinPath [
|
||||
dart-sass
|
||||
fzf
|
||||
]}
|
||||
)
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
install $src $out/bin/marble
|
||||
'';
|
||||
}; # END TODO
|
||||
# packages.${system}.default = pkgs.stdenv.mkDerivation {
|
||||
# pname = "marble";
|
||||
# src = ./marble;
|
||||
# dontUnpack = true;
|
||||
#
|
||||
# nativeBuildInputs = with pkgs; [
|
||||
# wrapGAppsHook
|
||||
# gobject-introspection
|
||||
# ];
|
||||
#
|
||||
# buildInputs =
|
||||
# (with astal.packages.${system}; [
|
||||
# astal3
|
||||
# io
|
||||
# apps
|
||||
# battery
|
||||
# bluetooth
|
||||
# hyprland
|
||||
# mpris
|
||||
# network
|
||||
# notifd
|
||||
# powerprofiles
|
||||
# tray
|
||||
# wireplumber
|
||||
# ])
|
||||
# ++ (with pkgs; [
|
||||
# gjs
|
||||
# ]);
|
||||
#
|
||||
# preFixup = ''
|
||||
# gappsWrapperArgs+=(
|
||||
# --prefix PATH : ${with pkgs;
|
||||
# lib.makeBinPath [
|
||||
# dart-sass
|
||||
# fzf
|
||||
# ]}
|
||||
# )
|
||||
# '';
|
||||
#
|
||||
# installPhase = ''
|
||||
# mkdir -p $out/bin
|
||||
# install $src $out/bin/marble
|
||||
# '';
|
||||
# }; # END TODO
|
||||
|
||||
nixosConfigurations = {
|
||||
biscuit = lib.nixosSystem {
|
||||
|
||||
@@ -6,5 +6,6 @@
|
||||
../system/fonts/default.nix
|
||||
../system/cursor/default.nix
|
||||
../system/development/default.nix
|
||||
../system/theme/default.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -10,10 +10,4 @@
|
||||
# astal.hyprland
|
||||
# astal.apps
|
||||
# ];
|
||||
environment.systemPackages = [
|
||||
pkgs.adw-gtk3
|
||||
pkgs.colloid-icon-theme
|
||||
pkgs.colloid-gtk-theme
|
||||
# inputs.astal.packages.${system}.apps
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.adw-gtk3
|
||||
pkgs.colloid-icon-theme
|
||||
pkgs.colloid-gtk-theme
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user