move programs in modules such that base.nix il a basic configuration
All checks were successful
/ build-all (push) Successful in 1m37s

This commit is contained in:
ant 2025-09-27 11:32:20 +02:00
parent d43ece8ac4
commit 05bbe7463b
8 changed files with 162 additions and 174 deletions

View file

@ -1,5 +1,9 @@
{ lib, config, pkgs, pkgs-unstable, ... }:
{
imports = [
./base.nix
];
home.packages = with pkgs; [
nsxiv
libreoffice
@ -7,6 +11,8 @@
thunderbird
vieb
gimp
signal-desktop
open-in-mpv
];
programs.mpv = {
@ -23,6 +29,13 @@
];
};
programs.fish = {
shellAliases = {
bt = "bluetuith";
sxiv = "nsxiv";
};
};
# programs.chromium = {
# enable = true;
# package = pkgs.ungoogled-chromium;