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": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1723016048, "lastModified": 1723089792,
"narHash": "sha256-boo9SgJkWwqC1hfDn1fLiZLBR4wB2uFcJURbj/KGKtE=", "narHash": "sha256-vXv+xno/CxWom/MFLz54QV4OYNZ8gJmqV82FtZeH51c=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "6af4b8e298a5c6a32468b433ff9931b83a999ce3", "rev": "cba8af387c1e02cd459f5df427e190d2dbf7db85",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {

View file

@ -3,9 +3,9 @@
{ {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
syntaxHighlighting.enable = true;
enableCompletion = true; enableCompletion = true;
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true;
historySubstringSearch.enable = true; historySubstringSearch.enable = true;
dotDir = ".config/zsh"; dotDir = ".config/zsh";
initExtra = "PROMPT='%F{green}%~%f '"; initExtra = "PROMPT='%F{green}%~%f '";
@ -37,12 +37,5 @@
history.size = 1000000; history.size = 1000000;
history.path = ".config/zsh/history"; 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; 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.hostName = "desktop";
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
services.hardware.openrgb.enable = true;
boot.loader = { boot.loader = {
timeout = 0; timeout = 0;

View file

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

View file

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

View file

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