freeeeeeeeeeeeeeeeeeeeeeee

This commit is contained in:
joygnu 2024-08-08 15:26:04 +02:00
parent 205147b544
commit 54a16aa0d5
6 changed files with 22 additions and 35 deletions

View file

@ -142,11 +142,11 @@
},
"locked": {
"dir": "pkgs/firefox-addons",
"lastModified": 1723016048,
"narHash": "sha256-boo9SgJkWwqC1hfDn1fLiZLBR4wB2uFcJURbj/KGKtE=",
"lastModified": 1723089792,
"narHash": "sha256-vXv+xno/CxWom/MFLz54QV4OYNZ8gJmqV82FtZeH51c=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "6af4b8e298a5c6a32468b433ff9931b83a999ce3",
"rev": "cba8af387c1e02cd459f5df427e190d2dbf7db85",
"type": "gitlab"
},
"original": {

View file

@ -3,9 +3,9 @@
{
programs.zsh = {
enable = true;
syntaxHighlighting.enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
dotDir = ".config/zsh";
initExtra = "PROMPT='%F{green}%~%f '";
@ -37,12 +37,5 @@
history.size = 1000000;
history.path = ".config/zsh/history";
oh-my-zsh = {
enable = true;
plugins = [
"history-substring-search"
];
};
};
}

View file

@ -1,9 +1,18 @@
{ inputs, ... }:
{ inputs, lib, pkgs, ... }:
{
services.hardware.openrgb.enable = true;
programs.steam.enable = true;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
];
environment.systemPackages = with pkgs; [
prismlauncher
mangohud
lutris
];
networking.hostName = "desktop";
networking.networkmanager.enable = true;
services.hardware.openrgb.enable = true;
boot.loader = {
timeout = 0;

View file

@ -2,16 +2,9 @@
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
boot.loader = {
timeout = 0;
efi.canTouchEfiVariables = false;
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
imports = [
../../modules

View file

@ -17,10 +17,9 @@
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
virtualisation.waydroid.enable = true;
nixpkgs.config.allowUnfree = true;
programs.hyprland.enable = true;
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
nix.settings.experimental-features = [ "nix-command" "flakes"];
programs.nix-ld.enable = true;
time.timeZone = "Europe/Zurich";

View file

@ -1,12 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
#Games
prismlauncher
mangohud
lutris
#hackerman
fastfetch
cmatrix
@ -41,6 +36,7 @@
bottles
boxbuddy
waydroid
transmission_4-gtk
#gnome
gnome.gnome-clocks
gnome-calculator
@ -52,18 +48,15 @@
screen
tree
zip
rar
unzip
unrar
scrcpy
appimage-run
yt-dlp
distrobox
font-awesome
#laptop
alsa-utils
brightnessctl
lm_sensors
#laptop
brightnessctl
networkmanagerapplet
];
}