Added a file manager

This commit is contained in:
Alexandre 2025-12-26 21:44:15 +01:00
parent d3c6caf601
commit f92bba2f23
4 changed files with 13 additions and 2 deletions

View File

@ -77,7 +77,6 @@
# Hint Electron Apps to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
# Allow unfree packages
nixpkgs.config.allowUnfree = true;

View File

@ -32,6 +32,9 @@ commonHome // {
wofi
alacritty
firefox
# File manager
kdePackages.dolphin
# Hypr* ecosystem
hyprlauncher

9
modules/common/ai.nix Normal file
View File

@ -0,0 +1,9 @@
{
services = {
ollama = {
enable = true;
loadModels = [ "" "" ];
};
};
}

View File

@ -1,7 +1,7 @@
{ pkgs, inputs, ... }:
{
# Installs Spotify and Spicetify (import this module in homeManager)
# Installs Spotify and Spicetify (import this module in configuration.nix)
environment.systemPackages = with pkgs; [
spotify
];