Totally new ai.nix, integrating MIstral with ZED
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{ pkgs, user, ... } :
|
||||
{
|
||||
imports = [
|
||||
./apps/install_flatpaks.nix
|
||||
./apps/install_packages.nix
|
||||
./core/files.nix
|
||||
./core/locale.nix
|
||||
./core/networking.nix
|
||||
./core/nix-settings.nix
|
||||
#./core/login-tuigreeter.nix
|
||||
./core/login-lightdm.nix
|
||||
./desktop/audio.nix
|
||||
./desktop/hyprland.nix
|
||||
./dev/terminal.nix
|
||||
./core/boot.nix
|
||||
./services/services.nix
|
||||
];
|
||||
|
||||
|
||||
|
||||
users.users.${user.username} = {
|
||||
isNormalUser = true;
|
||||
description = "henrov";
|
||||
extraGroups = [
|
||||
"networkmanager" # allow editing network connections
|
||||
"wheel" # can do sudo
|
||||
"scanner" # access to the network scanner
|
||||
"lp" # access to the printer
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
aporetic
|
||||
nerd-fonts.iosevka
|
||||
];
|
||||
|
||||
# enable the catppuccin theme for everything with mocha + blue accents
|
||||
catppuccin.enable = true;
|
||||
catppuccin.flavor = "mocha";
|
||||
catppuccin.accent = "blue";
|
||||
|
||||
system.stateVersion = user.stateVersion;
|
||||
}
|
||||
Reference in New Issue
Block a user