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