opal updates
videogame hacker half-kh-hacker@hackery.site
Mon, 27 Jan 2025 12:13:45 +0000
4 files changed,
34 insertions(+),
18 deletions(-)
M
flake.nix
→
flake.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.nix
→
profiles/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.nix
→
profiles/runestone/base.nix
@@ -1,8 +1,7 @@
-{ - pkgs, - user-pkgs, - unstable-pkgs, - ... +{ pkgs +, user-pkgs +, unstable-pkgs +, ... }: { networking.hostName = "runestone";