mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-26 22:18:20 -04:00
things
This commit is contained in:
parent
d7179ea15b
commit
f39bee1c28
14 changed files with 156 additions and 36 deletions
|
@ -1,10 +1,34 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
spotify
|
||||
pulseaudioFull
|
||||
pavucontrol
|
||||
];
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.spicetify-nix.homeManagerModules.default
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
# spotify
|
||||
pulseaudioFull
|
||||
pavucontrol
|
||||
];
|
||||
};
|
||||
stylix = {
|
||||
targets = {
|
||||
spicetify = {
|
||||
enable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
programs.spicetify =
|
||||
let
|
||||
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
enabledExtensions = with spicePkgs.extensions; [
|
||||
adblock
|
||||
hidePodcasts
|
||||
shuffle # shuffle+ (special characters are sanitized out of extension names)
|
||||
];
|
||||
alwaysEnableDevTools = true;
|
||||
};
|
||||
xdg = {
|
||||
desktopEntries = {
|
||||
|
@ -14,10 +38,15 @@
|
|||
genericName = "Music Player";
|
||||
icon = "spotify-client";
|
||||
terminal = false;
|
||||
categories = [ "Audio" "Music" "Player" "AudioVideo" ];
|
||||
categories = [
|
||||
"Audio"
|
||||
"Music"
|
||||
"Player"
|
||||
"AudioVideo"
|
||||
];
|
||||
exec = "qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri %U";
|
||||
mimeType = [ "x-scheme-handler/spotify" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
{ pkgs, unstable, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../unstable.nix
|
||||
./ide/jb/clion.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
xorg.libX11.man
|
||||
meson
|
||||
autoPatchelfHook
|
||||
cmake
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
gnumake
|
||||
binutils
|
||||
linuxHeaders
|
||||
man-pages
|
||||
];
|
||||
};
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
gnumake
|
||||
(binutils-unwrapped.override {
|
||||
withAllTargets = true;
|
||||
})
|
||||
libtree
|
||||
linuxHeaders
|
||||
man-pages
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,14 +1,21 @@
|
|||
{pkgs, config, ...}:
|
||||
let
|
||||
in {
|
||||
imports = [
|
||||
../../pinned.nix
|
||||
{ pkgs, config, ... }:
|
||||
let
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
../../pinned.nix
|
||||
../../unstable.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
# pinned.vscode
|
||||
(unstable.vscode.fhsWithPackages (
|
||||
pkgs: with pkgs; [
|
||||
powershell
|
||||
]
|
||||
))
|
||||
# codium
|
||||
zed-editor
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
pinned.vscode
|
||||
# codium
|
||||
zed-editor
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
7
common/users/homeModules/dev/ide/jb/clion.nix
Normal file
7
common/users/homeModules/dev/ide/jb/clion.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
packages = with pkgs.jetbrains; [
|
||||
clion
|
||||
];
|
||||
};
|
||||
}
|
|
@ -2,5 +2,6 @@
|
|||
imports = [
|
||||
./idea.nix
|
||||
./androidStudio.nix
|
||||
./clion.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{ pkgs, unstable, ... }: {
|
||||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
../prisma.nix
|
||||
../../../../customPackages
|
||||
../unstable.nix
|
||||
];
|
||||
home = {
|
||||
shellAliases = {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{pkgs, unstable, ...}: {
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./unstable.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
unstable.prisma
|
||||
|
|
8
common/users/homeModules/unstable.nix
Normal file
8
common/users/homeModules/unstable.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ unstable, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
inherit unstable;
|
||||
})
|
||||
];
|
||||
}
|
|
@ -19,6 +19,9 @@ in
|
|||
zsh-powerlevel10k
|
||||
zsh-syntax-highlighting
|
||||
];
|
||||
sessionVariables = {
|
||||
POWERSHELL_PATH = "${pkgs.powershell}/bin/pwsh";
|
||||
};
|
||||
file = {
|
||||
p10k = {
|
||||
recursive = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue