format with nixfmt
This commit is contained in:
parent
f29debb85f
commit
b27a6cbf01
|
@ -24,20 +24,14 @@ let
|
|||
F11 = "21";
|
||||
F12 = "22";
|
||||
};
|
||||
extraGotoBindings =
|
||||
lib.mapAttrs'
|
||||
(name: value: {
|
||||
extraGotoBindings = lib.mapAttrs' (name: value: {
|
||||
name = "${mod}+${name}";
|
||||
value = "workspace ${value}";
|
||||
})
|
||||
extraWorkspaces;
|
||||
extraMoveBindings =
|
||||
lib.mapAttrs'
|
||||
(name: value: {
|
||||
}) extraWorkspaces;
|
||||
extraMoveBindings = lib.mapAttrs' (name: value: {
|
||||
name = "${mod}+Shift+${name}";
|
||||
value = "move container to workspace ${value}";
|
||||
})
|
||||
extraWorkspaces;
|
||||
}) extraWorkspaces;
|
||||
in
|
||||
{
|
||||
home.sessionVariables = {
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
inputs.private.nixosModules.substituter
|
||||
];
|
||||
|
||||
systemd.tmpfiles.rules =
|
||||
lib.mapAttrsToList (key: value: "L+ /etc/channels/${key} - - - - ${value.outPath}")
|
||||
inputs;
|
||||
systemd.tmpfiles.rules = lib.mapAttrsToList (
|
||||
key: value: "L+ /etc/channels/${key} - - - - ${value.outPath}"
|
||||
) inputs;
|
||||
|
||||
nix = {
|
||||
nixPath = [ "/etc/channels" ];
|
||||
|
|
|
@ -90,8 +90,7 @@
|
|||
|
||||
services.printing.drivers = [
|
||||
pkgs.cups-dymo
|
||||
(pkgs.brlaser.overrideAttrs (
|
||||
old: {
|
||||
(pkgs.brlaser.overrideAttrs (old: {
|
||||
version = "unstable-2023-02-20";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "pdewacht";
|
||||
|
@ -99,11 +98,13 @@
|
|||
rev = "2a49e3287c70c254e7e3ac9dabe9d6a07218c3fa";
|
||||
sha256 = "sha256-1fvO9F7ifbYQHAy54mOx052XutfKXSK6iT/zj4Mhbww=";
|
||||
};
|
||||
}
|
||||
))
|
||||
}))
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [ amdgpu_top ryujinx ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
amdgpu_top
|
||||
ryujinx
|
||||
];
|
||||
|
||||
# Home
|
||||
home-manager.users.artemis = {
|
||||
|
|
Loading…
Reference in a new issue