Reinitialized repo after massive overhaul
This commit is contained in:
19
system/programs/ags/flake.nix
Normal file
19
system/programs/ags/flake.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
description = "ags dependancies";
|
||||
|
||||
inputs = {
|
||||
|
||||
};
|
||||
|
||||
outputs = { self, ... }: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {
|
||||
services = {
|
||||
upower.enable = true;
|
||||
gvfs.enable = true;
|
||||
power-profiles-daemon.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
22
system/programs/flake.nix
Normal file
22
system/programs/flake.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
description = "System program config";
|
||||
|
||||
inputs = {
|
||||
|
||||
ags.url = "./ags";
|
||||
|
||||
hyprland.url = "./hyprland";
|
||||
};
|
||||
|
||||
outputs = { self, ... }@inputs: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {
|
||||
|
||||
imports = [
|
||||
inputs.hyprland.module
|
||||
inputs.ags.module
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
25
system/programs/hyprland/flake.nix
Normal file
25
system/programs/hyprland/flake.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
description = "Hyprland Config";
|
||||
|
||||
inputs = {
|
||||
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
||||
};
|
||||
|
||||
outputs = { self, ... }@inputs: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {
|
||||
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
|
||||
xwayland.enable = true;
|
||||
|
||||
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
||||
|
||||
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user