mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
[STYLE/REFACTOR] Deadnix, Alejandra and Statix
This commit is contained in:
parent
8573c4508d
commit
d4242f9dd8
51 changed files with 465 additions and 466 deletions
|
|
@ -1,17 +1,24 @@
|
|||
_: let
|
||||
hostConfig = {config, tree, pkgs, ...}: {
|
||||
imports = with tree.nixos.hardware; [
|
||||
lenovo-thinkpad-x260
|
||||
common-pc-laptop-ssd
|
||||
] ++ (with tree.nixos.roles; [
|
||||
graphical
|
||||
sway
|
||||
laptop
|
||||
bootable
|
||||
]) ++ (with tree; [
|
||||
kat.gui
|
||||
kat.sway
|
||||
]);
|
||||
hostConfig = {
|
||||
config,
|
||||
tree,
|
||||
...
|
||||
}: {
|
||||
imports = with tree.nixos.hardware;
|
||||
[
|
||||
lenovo-thinkpad-x260
|
||||
common-pc-laptop-ssd
|
||||
]
|
||||
++ (with tree.nixos.roles; [
|
||||
graphical
|
||||
sway
|
||||
laptop
|
||||
bootable
|
||||
])
|
||||
++ (with tree; [
|
||||
kat.gui
|
||||
kat.sway
|
||||
]);
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
|
|
@ -24,7 +31,7 @@ _: let
|
|||
};
|
||||
};
|
||||
|
||||
services.openssh = {
|
||||
services.openssh = {
|
||||
hostKeys = [
|
||||
{
|
||||
bits = 4096;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue