plasma-manager

This commit is contained in:
Mohamed Chrayed 2024-08-01 11:48:00 +02:00
parent 54af50a15d
commit 853fe23076
3 changed files with 14 additions and 3 deletions

View File

@ -3,12 +3,11 @@
{
imports = [
./user/userpkgs.nix
./user/plasma.nix
]
home.username = "mo";
home.homeDirectory = "/home/mo";
home.stateVersion = "24.05";
home.packages = [
];
home.file = {
};
home.sessionVariables = {

12
user/plasma.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs, ...}:
{
imports = [
<plasma-manager/modules>
];
programs = {
plasma = {
enable = true;
};
};
}

View File

@ -1,3 +1,3 @@
{ config, pkgs, pkgs-stable,... }:
{ config, pkgs, pkgs-stable, plasma-manager,... }:
{
}