removed astal
This commit is contained in:
@@ -24,7 +24,33 @@
|
|||||||
lib = nixpkgs.lib;
|
lib = nixpkgs.lib;
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
|
||||||
|
# TODO: migrate to another nix file.
|
||||||
|
# packages.${system}.default = pkgs.stdenvNoCC.mkDerivation rec {
|
||||||
|
# name = "my-shell";
|
||||||
|
# src = ./.;
|
||||||
|
#
|
||||||
|
# nativeBuildInputs = [
|
||||||
|
# ags.packages.${system}.default
|
||||||
|
# pkgs.wrapGAppsHook
|
||||||
|
# pkgs.gobject-introspection
|
||||||
|
# ];
|
||||||
|
#
|
||||||
|
# buildInputs = with astal.packages.${system}; [
|
||||||
|
# astal3
|
||||||
|
# astal-hyprland
|
||||||
|
# io
|
||||||
|
# # hyprland
|
||||||
|
# ];
|
||||||
|
# installPhase = ''
|
||||||
|
# mkdir -p $out/bin
|
||||||
|
# ags bundle app.ts $out/bin/${name}
|
||||||
|
# '';
|
||||||
|
# };
|
||||||
|
# END TODO
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
biscuit = lib.nixosSystem {
|
biscuit = lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs system; };
|
specialArgs = { inherit inputs system; };
|
||||||
|
|||||||
@@ -4,5 +4,6 @@
|
|||||||
../packages/hyprland/default.nix
|
../packages/hyprland/default.nix
|
||||||
../packages/waybar/default.nix
|
../packages/waybar/default.nix
|
||||||
../packages/hyprpanel/default.nix
|
../packages/hyprpanel/default.nix
|
||||||
|
../packages/ags/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@
|
|||||||
zsh
|
zsh
|
||||||
p7zip
|
p7zip
|
||||||
gcc
|
gcc
|
||||||
|
astal.hyprland
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
inputs.astal.packages.${system}.default
|
# inputs.astal.packages.${system}.default
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.ags = {
|
programs.ags = {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
# Fix the overwrite issue with HyprPanel.
|
# Fix the overwrite issue with HyprPanel.
|
||||||
# See below for more information.
|
# See below for more information.
|
||||||
# Default: false
|
# Default: false
|
||||||
overwrite.enable = true;
|
overwrite.enable = false;
|
||||||
|
|
||||||
# Import a theme from './themes/*.json'.
|
# Import a theme from './themes/*.json'.
|
||||||
# Default: ""
|
# Default: ""
|
||||||
|
|||||||
@@ -5,4 +5,10 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
programs.kitty.enable = true;
|
programs.kitty.enable = true;
|
||||||
|
programs.kitty.settings = {
|
||||||
|
confirm_os_window_close = 0;
|
||||||
|
window_padding_width = 10;
|
||||||
|
font_size = 12.0;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user