Compare commits

..

2 commits

3 changed files with 4 additions and 23 deletions

View file

@ -28,6 +28,8 @@
home = {
username = "millironx";
homeDirectory = "/home/millironx";
# Signal desktop is not available in any other package repository for aarch64 linux
packages = [ pkgs-unstable.signal-desktop ];
};
programs = {
git = {

View file

@ -1,10 +1,4 @@
{ config, lib, pkgs, pkgs-unstable, ... }:
let
packages = import ./../pkgs.nix {
inherit pkgs;
inherit pkgs-unstable;
};
in {
{ config, lib, pkgs, pkgs-unstable, ... }: {
fonts = { fontconfig = { enable = true; }; };
home = {
file = {
@ -21,7 +15,7 @@ in {
"${config.xdg.dataHome}/kio/servicemenus/powerpoint-to-pdf.desktop".source =
./../dotfiles/powerpoint-to-pdf.desktop;
};
packages = packages.linux;
packages = with pkgs; [ bitwarden-cli ];
sessionVariables = { JULIA_NUM_THREADS = "$(nproc)"; };
shellAliases = {
nrun = ''

View file

@ -47,19 +47,4 @@
})
];
linux = with pkgs; [ ];
linux-desktop = with pkgs; [
anki
bitwarden-desktop
inkscape-with-extensions
musescore
obs-studio
ollama
openrct2
qownnotes
trayscale
veracrypt
vorta
];
}