This commit is contained in:
KaitoTLex 2024-10-07 13:03:43 -07:00
parent f8026d47da
commit a339053df0
4 changed files with 24 additions and 17 deletions

18
flake.lock generated
View file

@ -189,11 +189,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1726611255, "lastModified": 1727817100,
"narHash": "sha256-/bxaYvIK6/d3zqpW26QFS0rqfd0cO4qreSNWvYLTl/w=", "narHash": "sha256-dlyV9/eiWkm/Y/t2+k4CFZ29tBvCANmJogEYaHeAOTw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "d2493de5cd1da06b6a4c3e97f4e7d5dd791df457", "rev": "437ec62009fa8ceb684eb447d455ffba25911cf9",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -313,11 +313,11 @@
"satellite": "satellite" "satellite": "satellite"
}, },
"locked": { "locked": {
"lastModified": 1726622808, "lastModified": 1727886157,
"narHash": "sha256-Az5HT1fe6Yf1vmrR32OjvF7iZ1sh7oH7lXIWv8w7KeE=", "narHash": "sha256-+gdybUe2sz3QF+pwVVJFz4uBlHjDyHWWpxhDMafBVvk=",
"owner": "KaitoTLex", "owner": "KaitoTLex",
"repo": "neovim-flake", "repo": "neovim-flake",
"rev": "5e32cf5afe1201400fe6e01939035e507290488e", "rev": "77af044f5e51da9bdc03200a0607d3ee30c8c0d0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -426,11 +426,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1726633022, "lastModified": 1727842659,
"narHash": "sha256-Ef/kTMoV3aPfecL2X27sxYshsLJJDIBFKYjPsqaTUBw=", "narHash": "sha256-2m5hx16ayKSvRFQyHDfRXMWVZDyDpI3DMwr7ujf+3tg=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "9f373314f087e11183afe6928d48a816d44929d4", "rev": "3e033244348288c6995b155a493a229e499a7c4f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -15,6 +15,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
virtualisation.waydroid.enable = true; virtualisation.waydroid.enable = true;
boot.kernelPackages = pkgs.linuxPackages_xanmod;
networking.hostName = "kuroko"; # Define your hostname. networking.hostName = "kuroko"; # Define your hostname.
#Nvidia Hardware begins #Nvidia Hardware begins
@ -63,7 +64,6 @@
security.polkit.enable = true; security.polkit.enable = true;
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# Set your time zone. # Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
@ -87,11 +87,11 @@
# programs.mtr.enable = true; # programs.mtr.enable = true;
services.fprintd = { services.fprintd = {
enable = true; enable = true;
#package = pkgs.fprintd-tod; package = pkgs.fprintd-tod;
#tod = { tod = {
# enable = false; enable = true;
# driver = pkgs.libfprint-2-tod1-elan; driver = pkgs.libfprint-2-tod1-elan;
#}; };
}; };
# List services that you want to enable: # List services that you want to enable:
services.actkbd = { services.actkbd = {

View file

@ -57,9 +57,14 @@
startup = [ startup = [
{ {
always = true; always = true;
command = "swaybg -i /home/kaitotlex/Pictures/maic.png"; command = "swaybg -i /home/kaitotlex/Pictures/eff.png";
} }
]; ];
}; };
xwayland = true;
#extraConfigs = {
# keybindings = "bindsym XF86MonBrightnessDown exec brightnessctl -d amdgpu_bl2 set 10%- \n
# bindsym XF86MonBrightnessUp exec brightnessctl -d amdgpu_bl2 set 10%+";
#};
}; };
} }

View file

@ -33,6 +33,7 @@
chromium chromium
manga-tui manga-tui
thunderbird thunderbird
rustup
pamixer pamixer
@ -94,6 +95,7 @@
#sway Modules #sway Modules
swaybg swaybg
xwayland
# LaTeX stuff # LaTeX stuff
texliveFull texliveFull
@ -204,7 +206,7 @@
programs.oh-my-posh = { programs.oh-my-posh = {
enable = true; enable = true;
# enableZshIntegration = true; # enableZshIntegration = true;
enableFishIntegration = true; enableFishIntegration = false;
enableBashIntegration = true; enableBashIntegration = true;
useTheme = "gruvbox"; useTheme = "gruvbox";
}; };