mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-22 04:07:00 -04:00
fix syntax and stable / unstable
This commit is contained in:
parent
49571bbba2
commit
a96c69cf08
10 changed files with 84 additions and 81 deletions
|
@ -7,5 +7,5 @@
|
|||
libsForQt5.kcolorchooser
|
||||
gnome.gnome-calculator
|
||||
];
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
ffmpeg
|
||||
yt-dlp
|
||||
];
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,5 +7,5 @@
|
|||
inkscape
|
||||
obs-studio
|
||||
];
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, unstable ? pkgs, ...}: {
|
||||
{pkgs, unstable, ...}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
unstable.prisma
|
||||
|
@ -10,4 +10,4 @@
|
|||
PRISMA_QUERY_ENGINE_LIBRARY = "${pkgs.prisma-engines}/lib/libquery_engine.node";
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,5 +14,5 @@
|
|||
target = "./.config/kitty";
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, inputs, stable ? pkgs, unstable ? pkgs, ... }:
|
||||
{ pkgs, inputs, stable, unstable, ... }:
|
||||
let
|
||||
NAME = "meyer";
|
||||
in
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, inputs, systemImports, ... }:
|
||||
{ pkgs, inputs, stable, unstable, ... }:
|
||||
let
|
||||
NAME = "meyer";
|
||||
in
|
||||
|
@ -29,7 +29,7 @@ in
|
|||
};
|
||||
};
|
||||
home-manager = {
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = { inherit inputs stable unstable; };
|
||||
users = {
|
||||
"${NAME}" = import ./home.nix;
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@ in {
|
|||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
|
||||
imports = [
|
||||
../homeModules/util.nix
|
||||
../homeModules/utils.nix
|
||||
../homeModules/dev
|
||||
../homeModules/dev/ide
|
||||
../homeModules/dev/ide/jb/idea.nix
|
||||
|
@ -50,7 +50,7 @@ in {
|
|||
home = {
|
||||
packages = with pkgs; [
|
||||
pinned.etcher
|
||||
]
|
||||
];
|
||||
};
|
||||
home.shellAliases = {
|
||||
sd = ''lsusb | grep Elgato | grep --perl-regexp "(?<=Device 0{0,10})[1-9]+" --only-matching | xargs printf "usb.device_address eq %s" | copy'';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue