Compare commits
No commits in common. "391d83d7f95f29ff2cfcb760cd56cd677e762867" and "8236c40e87522fb4545ed0bcc03efa98aa3578bc" have entirely different histories.
391d83d7f9
...
8236c40e87
3 changed files with 23 additions and 4 deletions
|
|
@ -28,8 +28,6 @@
|
||||||
home = {
|
home = {
|
||||||
username = "millironx";
|
username = "millironx";
|
||||||
homeDirectory = "/home/millironx";
|
homeDirectory = "/home/millironx";
|
||||||
# Signal desktop is not available in any other package repository for aarch64 linux
|
|
||||||
packages = [ pkgs-unstable.signal-desktop ];
|
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
git = {
|
git = {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, lib, pkgs, pkgs-unstable, ... }: {
|
{ config, lib, pkgs, pkgs-unstable, ... }:
|
||||||
|
let
|
||||||
|
packages = import ./../pkgs.nix {
|
||||||
|
inherit pkgs;
|
||||||
|
inherit pkgs-unstable;
|
||||||
|
};
|
||||||
|
in {
|
||||||
fonts = { fontconfig = { enable = true; }; };
|
fonts = { fontconfig = { enable = true; }; };
|
||||||
home = {
|
home = {
|
||||||
file = {
|
file = {
|
||||||
|
|
@ -15,7 +21,7 @@
|
||||||
"${config.xdg.dataHome}/kio/servicemenus/powerpoint-to-pdf.desktop".source =
|
"${config.xdg.dataHome}/kio/servicemenus/powerpoint-to-pdf.desktop".source =
|
||||||
./../dotfiles/powerpoint-to-pdf.desktop;
|
./../dotfiles/powerpoint-to-pdf.desktop;
|
||||||
};
|
};
|
||||||
packages = with pkgs; [ bitwarden-cli ];
|
packages = packages.linux;
|
||||||
sessionVariables = { JULIA_NUM_THREADS = "$(nproc)"; };
|
sessionVariables = { JULIA_NUM_THREADS = "$(nproc)"; };
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
nrun = ''
|
nrun = ''
|
||||||
|
|
|
||||||
15
pkgs.nix
15
pkgs.nix
|
|
@ -47,4 +47,19 @@
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
linux = with pkgs; [ ];
|
||||||
|
|
||||||
|
linux-desktop = with pkgs; [
|
||||||
|
anki
|
||||||
|
bitwarden-desktop
|
||||||
|
inkscape-with-extensions
|
||||||
|
musescore
|
||||||
|
obs-studio
|
||||||
|
ollama
|
||||||
|
openrct2
|
||||||
|
qownnotes
|
||||||
|
trayscale
|
||||||
|
veracrypt
|
||||||
|
vorta
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue