232 current 2024-10-25 12:10:10 24.05.20241019.a9b86fc 6.11.4 *

This commit is contained in:
Ranomier 2024-10-25 12:10:16 +02:00
parent d312b9e299
commit 58ada4c0cd
4 changed files with 75 additions and 68 deletions

View file

@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
overlays,
inputs, inputs,
... ...
}: { }: {
@ -16,9 +15,32 @@
# Allow unfree packages # Allow unfree packages
#unstable.config.allowUnfree = true; #unstable.config.allowUnfree = true;
nixpkgs.config.allowUnfree = true;
#nixpkgs.overlays = [ overlays.unstable-packages ]; #nixpkgs.overlays = [ overlays.unstable-packages ];
nixpkgs = {
# You can add overlays here
overlays = with inputs.self.overlays; [
# Add overlays your own flake exports (from overlays and pkgs dir):
#additions
#modifications
unstable-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes"];

View file

@ -12,7 +12,7 @@
--remember \ --remember \
--user-menu \ --user-menu \
--theme 'border=lightgreen;text=lightgreen;prompt=lightgreen;time=lightgreen;action=lightgreen;button=lightgreen;input=lightgreen' \ --theme 'border=lightgreen;text=lightgreen;prompt=lightgreen;time=lightgreen;action=lightgreen;button=lightgreen;input=lightgreen' \
--cmd hyprland''; --cmd Hyprland'';
# removed elements from theme: container # removed elements from theme: container
user = "greeter"; user = "greeter";
}; };

View file

@ -1,12 +1,4 @@
{ {pkgs, ...}: {
pkgs,
inputs,
...
}: let
unstable_list = with inputs.nixpkgs-unstable.legacyPackages."x86_64-linux"; [
neovim
];
in {
# also opens the TCP and UDP port from 1714 to 1764 # also opens the TCP and UDP port from 1714 to 1764
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
@ -20,8 +12,7 @@ in {
exec "${pkgs.amberol}/bin/amberol" "$@" exec "${pkgs.amberol}/bin/amberol" "$@"
''; '';
in in
with pkgs; with pkgs; [
[
# low level stuff # low level stuff
efibootmgr efibootmgr
#exfat #exfat
@ -36,8 +27,7 @@ in {
usbutils usbutils
lm_sensors lm_sensors
# neovim unstable.neovim
# unstable.neovim
git git
gnumake gnumake
gcc gcc
@ -73,8 +63,7 @@ in {
keepassxc keepassxc
#minecraft #minecraft
element-desktop element-desktop
] ];
++ unstable_list;
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts

View file

@ -1,8 +1,4 @@
{ {pkgs, ...}: {
pkgs,
inputs,
...
}: {
# Enable the X11 windowing system. # Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session. # You can disable this if you're only using the Wayland session.
services.xserver.enable = false; services.xserver.enable = false;