mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-06-13 16:14:35 +02:00
several improvements to desktop
This commit is contained in:
parent
bf38821477
commit
b4e9a29654
9 changed files with 23 additions and 23 deletions
home-manager
|
@ -31,6 +31,7 @@ with lib;
|
|||
./../programs/hstr.nix
|
||||
./../programs/thefuck.nix
|
||||
./../programs/ssh.nix
|
||||
./../programs/vscode.nix
|
||||
./../programs/zed.nix
|
||||
./../../nix.nix
|
||||
./packages.nix
|
||||
|
|
|
@ -14,14 +14,6 @@ let
|
|||
in
|
||||
{
|
||||
config = {
|
||||
nixpkgs.overlays = [
|
||||
(_: prev: {
|
||||
quickemu = prev.quickemu.overrideAttrs (old: {
|
||||
patches = (old.patches or [ ]) ++ [ ./../patches/quickemu.patch ];
|
||||
});
|
||||
})
|
||||
];
|
||||
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
|
@ -70,12 +62,11 @@ in
|
|||
ncdu
|
||||
devenv
|
||||
inputs.nixpkgs-update.packages.x86_64-linux.nixpkgs-update
|
||||
inputs.dagger.packages.x86_64-linux.dagger
|
||||
nixpkgs-review
|
||||
unzip
|
||||
nil
|
||||
nixd
|
||||
unrar
|
||||
# inputs.w17.packages.x86_64-linux.default
|
||||
nix-output-monitor
|
||||
nodePackages.pnpm
|
||||
npm-check-updates
|
||||
|
@ -136,10 +127,8 @@ in
|
|||
bottles
|
||||
protontricks
|
||||
heroic
|
||||
(vscode.override { commandLineArgs = electronFlags; })
|
||||
quickemu
|
||||
quickgui
|
||||
trilium-desktop
|
||||
anki
|
||||
muse-sounds-manager
|
||||
jetbrains-toolbox
|
||||
|
@ -160,6 +149,7 @@ in
|
|||
telegram-desktop
|
||||
thunderbird
|
||||
gearlever
|
||||
kdePackages.merkuro
|
||||
]
|
||||
else
|
||||
[ ]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.firefox = {
|
||||
programs.floorp = {
|
||||
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -25,6 +25,7 @@ in
|
|||
"nix"
|
||||
"uv"
|
||||
];
|
||||
nix_arguments = "--builders \"\"";
|
||||
};
|
||||
git.repos = [ configPath ];
|
||||
firmware = {
|
||||
|
|
5
home-manager/programs/vscode.nix
Normal file
5
home-manager/programs/vscode.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue