mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-22 08:24:46 +01:00
boinc and remove ly
This commit is contained in:
parent
910cd3316b
commit
e488d6af8e
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#customised applications
|
#customised applications
|
||||||
../../services/podman.nix
|
../../services/podman.nix
|
||||||
|
../../services/boinc.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
@ -11,8 +11,6 @@ imports =
|
|||||||
../packages/vim.nix
|
../packages/vim.nix
|
||||||
../packages/steam.nix
|
../packages/steam.nix
|
||||||
|
|
||||||
"${args.inputs.unstable}/nixos/modules/services/display-managers/ly.nix"
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
@ -21,7 +19,7 @@ imports =
|
|||||||
|
|
||||||
#libsForQt5.qt5ct
|
#libsForQt5.qt5ct
|
||||||
#qt6Packages.qt6ct
|
#qt6Packages.qt6ct
|
||||||
#where-is-my-sddm-theme
|
where-is-my-sddm-theme
|
||||||
|
|
||||||
swww
|
swww
|
||||||
|
|
||||||
@ -40,8 +38,6 @@ imports =
|
|||||||
nerdfonts
|
nerdfonts
|
||||||
ubuntu_font_family
|
ubuntu_font_family
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
@ -51,26 +47,28 @@ imports =
|
|||||||
|
|
||||||
security.pam.services.swaylock = {};
|
security.pam.services.swaylock = {};
|
||||||
security.pam.services.swaylock-effects = {};
|
security.pam.services.swaylock-effects = {};
|
||||||
|
|
||||||
|
|
||||||
security.pam.services.ly = {};
|
security.pam.services.ly = {};
|
||||||
|
|
||||||
#security.pam.services.display-manager.ly = {};
|
#security.pam.services.display-manager.ly = {};
|
||||||
services.displayManager = {
|
services.displayManager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
sessionPackages = with pkgs; [ sway ];
|
sessionPackages = with pkgs; [ sway ];
|
||||||
execCmd = "${pkgs.unstable.ly}/bin/ly";
|
|
||||||
#execCmd = "${unstable.pkgs.ly}/bin/ly";
|
sddm = {
|
||||||
ly = {
|
|
||||||
package = pkgs.unstable.ly;
|
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
autoNumlock = true;
|
||||||
|
|
||||||
animation = "matrix";
|
|
||||||
waylandsessions = "${config.services.displayManager.sessionData.desktops}/share/wayland-sessions";
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
### still really broken and neds 24.11
|
||||||
|
#ly = {
|
||||||
|
# package = pkgs.unstable.ly;
|
||||||
|
# enable = true;
|
||||||
|
# settings = {
|
||||||
|
# animation = "matrix";
|
||||||
|
# waylandsessions = "${config.services.displayManager.sessionData.desktops}/share/wayland-sessions";
|
||||||
|
# };
|
||||||
|
|
||||||
|
#};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
12
services/boinc.nix
Normal file
12
services/boinc.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
services.boinc = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.boinc-headless;
|
||||||
|
extraEnvPackages = with pkgs ;[
|
||||||
|
virtualbox
|
||||||
|
ocl-icd
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user