No description
- Nix 100%
| flake | changed init to winit since i don't want conflicts with the systemd init command | |
| flake.lock | Updated flake.lock | |
| flake.nix | fixed import | |
| LICENSE | initial commit | |
| README.md | fixed url to codeberg | |
winit
my custom session init system
you can include it like this:
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
winit = {
url = "git+https://codeberg.org/Qewa2/winit";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}
this will give you the following options:
programs.winit = {
enable = true;
package = inputs.winit.packages.winit;
defaults = {
filePath = "$HOME/.init.sh";
script = "${pkgs.lib.getExe pkgs.bash}";
};
};
(these are the defaults however you can change them)