all repos — char/flake @ f6f8216403a0a87d97014f2200dfdfa080d286e8

nixos flake

opal updates
videogame hacker half-kh-hacker@hackery.site
Mon, 27 Jan 2025 12:13:45 +0000
commit

f6f8216403a0a87d97014f2200dfdfa080d286e8

parent

61c831c7c1cabd9384bea2894dd6e7228b1dc66e

M flake.nixflake.nix

@@ -15,13 +15,12 @@ inputs.nixpkgs.follows = "nixpkgs";

}; }; outputs = - { - self, - nixpkgs, - nixpkgs-unstable, - lix, - niri, - ... + { self + , nixpkgs + , nixpkgs-unstable + , lix + , niri + , ... }@inputs: { nixosConfigurations = {

@@ -103,6 +102,7 @@ ./profiles/common/desktop.nix

./profiles/opal/hardware-configuration.nix ./profiles/opal/base.nix + ./profiles/opal/software.nix ./profiles/runestone/desktop.nix ]; };
M profiles/opal/hardware-configuration.nixprofiles/opal/hardware-configuration.nix

@@ -1,8 +1,7 @@

-{ - config, - lib, - modulesPath, - ... +{ config +, lib +, modulesPath +, ... }: { imports = [

@@ -28,7 +27,7 @@ device = "/dev/disk/by-uuid/60C6-4ADE";

fsType = "vfat"; }; - swapDevices = [ { device = "/dev/disk/by-uuid/7919a726-42b5-4b5d-b8f5-7f556049ebc1"; } ]; + swapDevices = [{ device = "/dev/disk/by-uuid/7919a726-42b5-4b5d-b8f5-7f556049ebc1"; }]; networking.useDHCP = lib.mkDefault true;
A profiles/opal/software.nix

@@ -0,0 +1,18 @@

+{ pkgs, user-pkgs, unstable-pkgs, ... }: +{ + programs.firefox.enable = true; + programs.firefox.package = unstable-pkgs.firefox-devedition-bin; + + + environment.systemPackages = + (with pkgs; [ + vscode + nixpkgs-fmt + foot + ]) + ++ [ + user-pkgs.berkeley-mono + unstable-pkgs.nixd + unstable-pkgs.nixfmt-rfc-style + ]; +}
M profiles/runestone/base.nixprofiles/runestone/base.nix

@@ -1,8 +1,7 @@

-{ - pkgs, - user-pkgs, - unstable-pkgs, - ... +{ pkgs +, user-pkgs +, unstable-pkgs +, ... }: { networking.hostName = "runestone";