Add hyprland + test config

This commit is contained in:
Florian RICHER 2023-08-20 13:12:48 +02:00
parent 3784b4a6fe
commit daadeccc45
4 changed files with 27 additions and 11 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./hyprland
./programs
];

View file

@ -1,13 +1,12 @@
{
pkgs,
inputs,
...
} @ args: {
home.packages = [];
{ pkgs, ... }: {
xdg.configFile."hypr/set-bg" = {
executable = true;
text = ''
#!/usr/bin/env bash
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.default;
# settings = import ./settings.nix args;
echo "Salut"
'';
};
}