This commit is contained in:
Matt Nish-Lapidus 2024-09-29 15:42:52 -04:00
parent 4b5acfbfc4
commit 0eacb78197
3 changed files with 24 additions and 12 deletions

6
flake.lock generated
View file

@ -82,11 +82,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1727540359, "lastModified": 1727613673,
"narHash": "sha256-U+225h1kJZpWb23+RaX1sBkqC4fA7aa7eBbgiQ5HcO4=", "narHash": "sha256-qqIffTQfxMYo3MKQ9BoY2s2mdKZNnUiksdnxv81js9U=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "fb08bde00c20252b892a3e57fb094eb62b65ba61", "rev": "f5c239fa9acb27f0a5326ba2949c00fada89ca9f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -13,12 +13,6 @@
nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases. nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases.
# affinity-nix = {
# url = "github:mrshmllow/affinity-nix/main";
# inputs.nixpkgs.follows = "nixpkgs";
# flake = true;
# };
kmonad = { kmonad = {
url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix"; url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -30,7 +24,7 @@
}; };
}; };
outputs = inputs@{self, nixpkgs, nixpkgs-stable, home-manager, nix-flatpak, kmonad, musnix, ... }: { outputs = {self, nixpkgs, nixpkgs-stable, home-manager, nix-flatpak, kmonad, musnix, ... } @inputs: {
nixosConfigurations = { nixosConfigurations = {
eddie = nixpkgs.lib.nixosSystem { eddie = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@ -47,6 +41,9 @@
homeConfigurations = { homeConfigurations = {
"emenel" = home-manager.lib.homeManagerConfiguration { "emenel" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [ modules = [
nix-flatpak.homeManagerModules.nix-flatpak nix-flatpak.homeManagerModules.nix-flatpak
./home/home.nix ./home/home.nix

View file

@ -1,4 +1,4 @@
{ nix-flatpak, lib, pkgs, ... }: { nix-flatpak, lib, pkgs, inputs, ... }:
{ {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -120,7 +120,22 @@
yabridgectl yabridgectl
ansel ansel
rawtherapee rawtherapee
inkscape
gimp
epson-escpr epson-escpr
# Audio plugins (LV2, VST2, VST3, LADSPA)
distrho
calf
eq10q
lsp-plugins
x42-plugins
x42-gmsynth
dragonfly-reverb
guitarix
FIL-plugins
geonkick
]; ];
username = "emenel"; username = "emenel";