flake: reformat with nixfmt
This commit is contained in:
parent
a79e641851
commit
eaf4f56ac0
117 changed files with 2667 additions and 1592 deletions
|
@ -1,26 +1,35 @@
|
|||
{ self, lib, ... }:
|
||||
|
||||
{
|
||||
perSystem = { pkgs, inputs', ... }: {
|
||||
devshells.default =
|
||||
let
|
||||
pythonEnv = (pkgs.python3.withPackages (p: with p; [
|
||||
qtile
|
||||
qtile-extras
|
||||
]));
|
||||
in
|
||||
{
|
||||
devshell.name = "universe";
|
||||
devshell.motd = "";
|
||||
perSystem =
|
||||
{ pkgs, inputs', ... }:
|
||||
{
|
||||
devshells.default =
|
||||
let
|
||||
pythonEnv = (
|
||||
pkgs.python3.withPackages (
|
||||
p: with p; [
|
||||
qtile
|
||||
qtile-extras
|
||||
]
|
||||
)
|
||||
);
|
||||
in
|
||||
{
|
||||
devshell.name = "universe";
|
||||
devshell.motd = "";
|
||||
|
||||
devshell.packages = [
|
||||
pythonEnv
|
||||
inputs'.disko.packages.disko
|
||||
];
|
||||
devshell.packages = [
|
||||
pythonEnv
|
||||
inputs'.disko.packages.disko
|
||||
];
|
||||
|
||||
env = [
|
||||
{ name = "PYTHONPATH"; prefix = "${pythonEnv}/${pythonEnv.sitePackages}"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
env = [
|
||||
{
|
||||
name = "PYTHONPATH";
|
||||
prefix = "${pythonEnv}/${pythonEnv.sitePackages}";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue