Compare commits
No commits in common. "602337bd370ebd9f9608d6b12053bf05d4942d3d" and "491bd4a337e93cdd8a1d710be8bd4b162eb45327" have entirely different histories.
602337bd37
...
491bd4a337
@ -1,12 +0,0 @@
|
|||||||
repos:
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
||||||
rev: v3.2.0
|
|
||||||
hooks:
|
|
||||||
- id: trailing-whitespace
|
|
||||||
- id: end-of-file-fixer
|
|
||||||
- id: check-yaml
|
|
||||||
- id: check-added-large-files
|
|
||||||
- repo: https://github.com/nix-community/nixpkgs-fmt
|
|
||||||
rev: v1.3.0
|
|
||||||
hooks:
|
|
||||||
- id: nixpkgs-fmt
|
|
@ -13,8 +13,7 @@
|
|||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
user = "torjus";
|
user = "torjus";
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
nixosConfigurations.prismo = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.prismo = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs self user; };
|
specialArgs = { inherit inputs self user; };
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# nix stuff
|
# nix stuff
|
||||||
nixpkgs-fmt
|
nixfmt
|
||||||
nil
|
nil
|
||||||
statix
|
statix
|
||||||
];
|
];
|
||||||
|
@ -76,15 +76,13 @@
|
|||||||
"$mainMod,l,movewindow,r"
|
"$mainMod,l,movewindow,r"
|
||||||
"$mainMod,k,movewindow,u"
|
"$mainMod,k,movewindow,u"
|
||||||
"$mainMod,j,movewindow,d"
|
"$mainMod,j,movewindow,d"
|
||||||
] ++ (builtins.concatLists (builtins.genList
|
] ++ (builtins.concatLists (builtins.genList (x:
|
||||||
(x:
|
let
|
||||||
let
|
ws = let c = (x + 1) / 10; in builtins.toString (x + 1 - (c * 10));
|
||||||
ws = let c = (x + 1) / 10; in builtins.toString (x + 1 - (c * 10));
|
in [
|
||||||
in
|
"$mainMod, ${ws}, workspace, ${toString (x + 1)}"
|
||||||
[
|
"ALT, ${ws}, workspace, ${toString (x + 1)}"
|
||||||
"$mainMod, ${ws}, workspace, ${toString (x + 1)}"
|
]) 10));
|
||||||
"ALT, ${ws}, workspace, ${toString (x + 1)}"
|
|
||||||
]) 10));
|
|
||||||
exec-once = [ "waybar &" ];
|
exec-once = [ "waybar &" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
ncdu
|
ncdu
|
||||||
pamixer
|
pamixer
|
||||||
pinentry
|
pinentry
|
||||||
pre-commit
|
|
||||||
pulsemixer
|
pulsemixer
|
||||||
rbw
|
rbw
|
||||||
restic
|
restic
|
||||||
@ -32,8 +31,5 @@
|
|||||||
python3
|
python3
|
||||||
poetry
|
poetry
|
||||||
ruff
|
ruff
|
||||||
|
|
||||||
# Rust
|
|
||||||
rustup
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -11,3 +11,4 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,3 +54,4 @@
|
|||||||
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user