mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-15 05:39:11 +02:00
wip: migrate client modules
This commit is contained in:
parent
f6d2ff1544
commit
7ce27d5d2f
245 changed files with 20254 additions and 188 deletions
26
modules-clone/nixos/optional/noctalia.nix
Normal file
26
modules-clone/nixos/optional/noctalia.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ self, inputs, config, ... }:
|
||||
{
|
||||
disabledModules = [ "programs/gpu-screen-recorder.nix" ];
|
||||
imports = [
|
||||
"${inputs.nixpkgs-dev}/nixos/modules/programs/gpu-screen-recorder.nix"
|
||||
];
|
||||
config = {
|
||||
home-manager.users.${config.swarselsystems.mainUser}.imports = [
|
||||
"${self}/modules/home/optional/noctalia.nix"
|
||||
];
|
||||
services = {
|
||||
upower.enable = true; # needed for battery percentage
|
||||
gnome.evolution-data-server.enable = true; # needed for calendar integration
|
||||
|
||||
noctoggle = {
|
||||
enable = true;
|
||||
# noctaliaPackage = pkgs.noctalia-shell;
|
||||
};
|
||||
|
||||
};
|
||||
programs = {
|
||||
gpu-screen-recorder.enable = true;
|
||||
evolution.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue