mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-03-13 03:24:05 +01:00
Compare commits
No commits in common. "4938bed57948ecb0a4dd6fea97d7e331e29f2bf5" and "04bc5181ffeeb66e7edd67358882c3d2af23aa52" have entirely different histories.
4938bed579
...
04bc5181ff
2 changed files with 8 additions and 5 deletions
|
|
@ -8,9 +8,12 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
services.displayManager.lemurs = {
|
|
||||||
enable = true;
|
# start sway if login happens
|
||||||
settings.environment_switcher.include_tty_shell = true;
|
environment.interactiveShellInit = ''
|
||||||
};
|
if test `tty` = /dev/tty1; then
|
||||||
|
exec sway
|
||||||
|
fi
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
# binary blobs are needed for ventoy
|
# binary blobs are needed for ventoy
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
"ventoy-${pkgs.ventoy.version}"
|
"ventoy-1.1.07"
|
||||||
];
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
ventoy-full # general
|
ventoy-full # general
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue