Compare commits

..

No commits in common. "51bdf5d1918375b68ebf420017d398de43d148fd" and "5733425f79baaae461cde983aacd564ca70f9104" have entirely different histories.

6 changed files with 11 additions and 10 deletions

View file

@ -4,7 +4,8 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nil nil
ffmpeg ffmpeg
fastfetch yt-dlp
hyfetch
]; ];
networking = { networking = {

View file

@ -14,6 +14,7 @@
../programs/ghostty.nix ../programs/ghostty.nix
../programs/kde.nix ../programs/kde.nix
../programs/games.nix
# ../programs/vscode.nix # ../programs/vscode.nix
# the world if hyprland # the world if hyprland
@ -85,12 +86,16 @@
obs-studio obs-studio
obsidian obsidian
polkit_gnome polkit_gnome
shotcut
strawberry strawberry
vscode vscode
(vesktop.override {withSystemVencord = false;}) (vesktop.override {withSystemVencord = false;})
]; ];
}; };
xdg.enable = true;
gtk.enable = true;
}; };
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {

View file

@ -11,6 +11,8 @@
enable = true; enable = true;
interactiveShellInit = with pkgs; '' interactiveShellInit = with pkgs; ''
set -gx SSH_AUTH_SOCK /run/user/1000/ssh-agent
if test -f ~/.ssh/id_ed25519 if test -f ~/.ssh/id_ed25519
ssh-add -l | grep -q (ssh-keygen -lf ~/.ssh/id_ed25519) || ssh-add ~/.ssh/id_ed25519 ssh-add -l | grep -q (ssh-keygen -lf ~/.ssh/id_ed25519) || ssh-add ~/.ssh/id_ed25519
end end

View file

@ -1,13 +1,11 @@
{ {
pkgs,
camasca, camasca,
pkgs,
... ...
}: { }: {
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
environment = { environment = {
variables.SSH_AUTH_SOCK = "/run/user/1000/ssh-agent";
systemPackages = with pkgs; [ systemPackages = with pkgs; [
flameshot flameshot
camasca.packages.${pkgs.system}.koi camasca.packages.${pkgs.system}.koi

View file

@ -1,8 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [ imports = [./nvidia.nix];
./nvidia.nix
../../programs/games.nix
];
services.xserver.videoDrivers = ["amdgpu"]; services.xserver.videoDrivers = ["amdgpu"];

View file

@ -1,6 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [../../programs/games.nix];
boot = { boot = {
initrd.kernelModules = ["i915"]; initrd.kernelModules = ["i915"];
kernelParams = ["i915.force_probe=9a49"]; kernelParams = ["i915.force_probe=9a49"];