This commit is contained in:
2026-02-24 23:27:24 +00:00
parent dcaaeb02e1
commit 1ef5057dff
9 changed files with 87 additions and 91 deletions

8
flake.lock generated
View File

@@ -45,16 +45,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1713995372, "lastModified": 1771574726,
"narHash": "sha256-fFE3M0vCoiSwCX02z8VF58jXFRj9enYUSTqjyHAjrds=", "narHash": "sha256-D1PA3xQv/s4W3lnR9yJFSld8UOLr0a/cBWMQMXS+1Qg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "dd37924974b9202f8226ed5d74a252a9785aedf8", "rev": "c217913993d6c6f6805c3b1a3bda5e639adfde6d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-23.11", "ref": "nixos-25.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@@ -2,7 +2,7 @@
description = "Stationette nix config"; description = "Stationette nix config";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager/release-23.11"; home-manager.url = "github:nix-community/home-manager/release-23.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";

View File

@@ -14,6 +14,7 @@
permittedInsecurePackages = [ permittedInsecurePackages = [
"electron-25.9.0" # Obsidian "electron-25.9.0" # Obsidian
"beekeeper-studio-5.3.4"
]; ];
}; };
}; };

View File

@@ -17,28 +17,27 @@
obsidian obsidian
thunderbird thunderbird
libreoffice-qt libreoffice-qt
nerd-fonts.fira-code # pkgs-unstable.nerd-fonts.fira-code
hunspell hunspell
blueberry blueberry
steam steam
steam-run steam-run
yuzu-mainline
viewnior viewnior
pkgs-unstable.hyprshot pkgs-unstable.hyprshot
catppuccin-cursors.macchiatoBlue catppuccin-cursors.macchiatoBlue
catppuccin-gtk catppuccin-gtk
papirus-folders papirus-folders
php84Packages.composer # pkgs-unstable.php84Packages.composer
php84Packages.xdebug # pkgs-unstable.php84Packages.xdebug
php84Extensions.sqlite3 # pkgs-unstable.php84Extensions.sqlite3
php84Extensions.redis # pkgs-unstable.php84Extensions.redis
php84Extensions.sodium # pkgs-unstable.php84Extensions.sodium
php84Extensions.pgsql # pkgs-unstable.php84Extensions.pgsql
php84Extensions.iconv # pkgs-unstable.php84Extensions.iconv
php84Extensions.gd # pkgs-unstable.php84Extensions.gd
php84Extensions.zip # pkgs-unstable.php84Extensions.zip
php php
antigravity # antigravity
gimp gimp
kdePackages.dolphin kdePackages.dolphin
enpass enpass
@@ -57,7 +56,6 @@
zathura zathura
ghostty ghostty
wally-cli wally-cli
youtube-dl
kdePackages.wacomtablet kdePackages.wacomtablet
kdePackages.print-manager kdePackages.print-manager
mpv mpv

View File

@@ -1,4 +1,4 @@
{ inputs, ... }: { pkgs, inputs, ... }:
let let
lock-false = { lock-false = {
@@ -69,7 +69,6 @@ in
}; };
}; };
}; };
};
/* ---- PROFILES ---- */ /* ---- PROFILES ---- */
# Switch profiles via about:profiles page. # Switch profiles via about:profiles page.
@@ -130,5 +129,6 @@ in
}; };
}; };
}; };
};
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }

View File

@@ -5,7 +5,6 @@
bluetooth.enable = true; bluetooth.enable = true;
opengl = { opengl = {
enable = true; enable = true;
driSupport = true;
driSupport32Bit = true; driSupport32Bit = true;
}; };
}; };

View File

@@ -15,9 +15,9 @@
TimeoutStopSec = 10; TimeoutStopSec = 10;
}; };
}; };
extraConfig = '' # extraConfig = ''
DefaulTimeoutStopSec=10s # DefaulTimeoutStopSec=10s
''; # '';
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
sound.enable = true; # sound.enable = true;
security.rtkit.enable = true; security.rtkit.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;

View File

@@ -9,8 +9,6 @@
qemu = { qemu = {
swtpm.enable = true; swtpm.enable = true;
ovmf.enable = true;
# ovmf.packages = [ pkgs.OVMFFULL.fd ];
}; };
}; };