Compare commits

...

2 commits

Author SHA1 Message Date
Jessica Canady f30b1a77ed WIP: Stylix integration.
Failing on some dconf error.
2023-07-26 19:10:24 -04:00
Jessica Canady 7d5f0371bb Allow unfree, install Slack + Discord. 2023-07-26 19:10:11 -04:00
4 changed files with 16 additions and 14 deletions

View file

@ -331,11 +331,11 @@
"nixpkgs-regression": "nixpkgs-regression" "nixpkgs-regression": "nixpkgs-regression"
}, },
"locked": { "locked": {
"lastModified": 1687611331, "lastModified": 1689772027,
"narHash": "sha256-qbbf+fRw0wn3cAEJGQ+pC3LrBEZs//zNXeITt1pj9ZQ=", "narHash": "sha256-vGTaJTox1lFESRXDFn0dz3Jo1qcYYSb7dv3KM0U2p+I=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nix", "repo": "nix",
"rev": "60f06a1714a74bf144eb9ccad9643578248bdfc4", "rev": "b0173716f6b27b4fb307ac9ded544e46e712ad22",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -15,6 +15,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
stylix.homeManagerModules.stylix
nixos-hardware.nixosModules.framework-12th-gen-intel nixos-hardware.nixosModules.framework-12th-gen-intel
./hosts/hornt.nix ./hosts/hornt.nix
./users/phoenix/user.nix ./users/phoenix/user.nix

View file

@ -5,6 +5,11 @@
./hornt-hardware.nix ./hornt-hardware.nix
]; ];
environment.systemPackages = [
# gotta be at this level, not home-manager? Mahbe?
pkgs.asdf-vm
];
system.stateVersion = "23.05"; system.stateVersion = "23.05";
nix.extraOptions = " nix.extraOptions = "
experimental-features = nix-command flakes experimental-features = nix-command flakes
@ -28,6 +33,7 @@
# stuff that needs installed systemwide # stuff that needs installed systemwide
programs.fish.enable = true; programs.fish.enable = true;
programs.dconf.enable = true;
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
@ -75,10 +81,6 @@
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
# If you want to use JACK applications, uncomment this
jack.enable = true; jack.enable = true;
}; };
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
} }

View file

@ -1,14 +1,13 @@
{ config, pkgs, home-manager, nix-doom-emacs, ... }: { config, pkgs, home-manager, stylix, nix-doom-emacs, ... }:
{ {
nixpkgs.config.allowUnfree = true;
home.stateVersion = "23.05"; home.stateVersion = "23.05";
home.packages = with pkgs; [ home.packages = with pkgs; [
# why not?
sddm
# dev tools # dev tools
wireguard-tools wireguard-tools
asdf-vm
git git
# DEs (gnome is elsewhere) # DEs (gnome is elsewhere)
hyprland hyprland
@ -25,11 +24,13 @@
plex-media-player # ugh where's the good app? plex-media-player # ugh where's the good app?
telegram-desktop # msg telegram-desktop # msg
jq jq
# comms
slack
discord
# editors (emacs is god, lives elsewhere) # editors (emacs is god, lives elsewhere)
neovim neovim
# browsers # browsers
firefox firefox
chromium
# email, female # email, female
thunderbird thunderbird
]; ];
@ -82,12 +83,10 @@
*/ */
# stylin' # stylin'
/*
stylix.image = pkgs.fetchurl { stylix.image = pkgs.fetchurl {
url = "https://www.pixelstalk.net/wp-content/uploads/2016/05/Epic-Anime-Awesome-Wallpapers.jpg"; url = "https://www.pixelstalk.net/wp-content/uploads/2016/05/Epic-Anime-Awesome-Wallpapers.jpg";
sha256 = "enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50="; sha256 = "enQo3wqhgf0FEPHj2coOCvo7DuZv+x5rL/WIo4qPI50=";
}; };
stylix.polarity = "dark"; stylix.polarity = "dark";
*/
} }