Update on file and add pantheon
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
# System services
|
# System services
|
||||||
os.boot.limine.enable = true;
|
os.boot.systemd.enable = true;
|
||||||
os.boot.plymouth.enable = true;
|
os.boot.plymouth.enable = true;
|
||||||
os.graphics.nvidia.enable = true;
|
os.graphics.nvidia.enable = true;
|
||||||
os.audio.pipewire.enable = true;
|
os.audio.pipewire.enable = true;
|
||||||
@@ -17,15 +17,12 @@
|
|||||||
# System configurations
|
# System configurations
|
||||||
os.keyboard.apple.enable = true;
|
os.keyboard.apple.enable = true;
|
||||||
|
|
||||||
# Flatpak configuration
|
|
||||||
os.flatpak.enable = true;
|
|
||||||
|
|
||||||
# Virtualisation Apps
|
# Virtualisation Apps
|
||||||
os.virtualisation.cuda.enable = false;
|
os.virtualisation.cuda.enable = false;
|
||||||
os.virtualisation.docker.enable = true;
|
os.virtualisation.podman.enable = true;
|
||||||
|
|
||||||
# Shells configurations
|
# Shells configurations
|
||||||
os.shells.gnome.enable = true;
|
os.shells.pantheon.enable = true;
|
||||||
|
|
||||||
# Terminal
|
# Terminal
|
||||||
programs.ssh.enableAskPassword = false; # No-window git push fix
|
programs.ssh.enableAskPassword = false; # No-window git push fix
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
@@ -15,14 +14,6 @@ in
|
|||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
hardware.nvidia-container-toolkit.enable = true;
|
hardware.nvidia-container-toolkit.enable = true;
|
||||||
environment.systemPackages = with pkgs.cudaPackages; [
|
|
||||||
cudatoolkit
|
|
||||||
cudnn
|
|
||||||
libcublas
|
|
||||||
libcufile
|
|
||||||
libcusparse
|
|
||||||
nccl
|
|
||||||
];
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,12 +33,9 @@ in
|
|||||||
systemPackages =
|
systemPackages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
nautilus
|
|
||||||
loupe
|
|
||||||
papers
|
papers
|
||||||
simple-scan
|
nautilus
|
||||||
]
|
];
|
||||||
++ (lib.optional config.os.flatpak.enable gnome-software);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.os.shells.pantheon;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.os.shells.pantheon = {
|
||||||
|
enable = mkEnableOption "System gnome shell service";
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.desktopManager.pantheon.enable = true;
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
pantheon.excludePackages = with pkgs; [
|
||||||
|
elementary-calendar
|
||||||
|
elementary-camera
|
||||||
|
elementary-mail
|
||||||
|
elementary-maps
|
||||||
|
elementary-photos
|
||||||
|
epiphany
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user