move programs in modules such that base.nix il a basic configuration
All checks were successful
/ build-all (push) Successful in 1m37s
All checks were successful
/ build-all (push) Successful in 1m37s
This commit is contained in:
parent
d43ece8ac4
commit
05bbe7463b
8 changed files with 162 additions and 174 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue