alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix some lints
author
Sean Aye
date
9 months ago
(Sep 11, 2025, 11:37 AM -0400)
commit
d512e1a0
d512e1a0322d8a845e498bcd3afab178f62e0895
parent
32b99b46
32b99b467a482f66f76ab760a430eeeb6ac568df
change-id
kkpqnzpu
kkpqnzpupqnuumlxmpyosspmmwxpnoyl
+36
-7
2 changed files
Expand all
Collapse all
Unified
Split
hosts
common
common.nix
home.nix
+1
hosts/common/common.nix
Reviewed
···
6
6
"nix-command"
7
7
"flakes"
8
8
];
9
9
+
nix.settings.download-buffer-size = 268435456;
9
10
10
11
hardware.bluetooth.enable = true;
11
12
hardware.bluetooth.powerOnBoot = true;
+35
-7
hosts/common/home.nix
Reviewed
···
21
21
bottom-right = 12.0;
22
22
};
23
23
clip-to-geometry = true;
24
24
+
draw-border-with-background = false;
24
25
}
25
26
];
26
27
layout = {
···
421
422
automount = true;
422
423
};
423
424
425
425
+
catppuccin = {
426
426
+
enable = true;
427
427
+
flavor = "frappe";
428
428
+
};
429
429
+
430
430
+
programs.fuzzel.enable = true;
431
431
+
424
432
programs.direnv.enable = true;
425
433
426
434
programs.zellij = {
···
494
502
enableFishIntegration = true;
495
503
};
496
504
497
497
-
catppuccin = {
498
498
-
enable = true;
499
499
-
flavor = "frappe";
500
500
-
};
501
501
-
502
505
programs.alacritty = {
503
506
enable = true;
504
507
settings = {
505
508
window = {
506
509
decorations = "none";
510
510
+
opacity = 0.9;
507
511
};
508
512
};
509
513
···
552
556
languages = {
553
557
language-server.rust-analyzer = {
554
558
config = {
555
555
-
checkOnSave = { command = "clippy"; };
556
556
-
cargo = { allFeatures = true; };
559
559
+
check = {
560
560
+
command = "clippy";
561
561
+
};
562
562
+
checkOnSave = true;
563
563
+
cargo = {
564
564
+
allFeatures = true;
565
565
+
};
557
566
};
558
567
};
559
568
language = [
···
600
609
{
601
610
name = "json";
602
611
auto-format = true;
612
612
+
}
613
613
+
{
614
614
+
name = "just";
615
615
+
auto-format = true;
616
616
+
formatter = {
617
617
+
command = "just";
618
618
+
args = [
619
619
+
"--justfile"
620
620
+
"/dev/stdin"
621
621
+
"--dump"
622
622
+
];
623
623
+
};
624
624
+
}
625
625
+
{
626
626
+
name = "toml";
627
627
+
auto-format = true;
628
628
+
formatter = {
629
629
+
command = "taplo";
630
630
+
};
603
631
}
604
632
];
605
633
};