Merge branch 'main' into firefox

This commit is contained in:
Aria Nolan 2023-11-06 21:50:58 -05:00
commit 6ac1d036e5
5 changed files with 20 additions and 33 deletions

View file

@ -74,11 +74,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1697810188, "lastModified": 1699306398,
"narHash": "sha256-9MR0VYClllADRmyYTypI6Qri6G+LACwYpzz/b5KePR8=", "narHash": "sha256-7HwWZWquyb68RtuVv0a6VaUKi42ivm8o46v9ALjNTHM=",
"owner": "helix-editor", "owner": "helix-editor",
"repo": "helix", "repo": "helix",
"rev": "6d598d32398943718b4943a452ae6dd8490fa439", "rev": "7bc564d3dcdee69555578bbec75d08e6ce227a9e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -95,11 +95,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1697838989, "lastModified": 1699290318,
"narHash": "sha256-hwVlO+st8vWJO6iy3/JbMHrUyY4Ak7xUSmffoWqBPUg=", "narHash": "sha256-weH8oEJo+g0yJtGGU+Zo2pg5kOxPUCAFl8v/5dEnH00=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "ae631b0b20f06f7d239d160723d228891ddb2fe0", "rev": "c067d57fc4552835987fd7611c3a6741ee32ebd5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -110,11 +110,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1698053470, "lastModified": 1699159446,
"narHash": "sha256-sP8D/41UiwC2qn0X40oi+DfuVzNHMROqIWdSdCI/AYA=", "narHash": "sha256-cL63IjsbPl2otS7R4kdXbVOJOXYMpGw5KGZoWgdCuCM=",
"owner": "NixOs", "owner": "NixOs",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "80d98a7d55c6e27954a166cb583a41325e9512d7", "rev": "627bc9b88256379578885a7028c9e791c29fb581",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -126,11 +126,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1697723726, "lastModified": 1699099776,
"narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=", "narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0", "rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -14,7 +14,6 @@
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = false; efi.canTouchEfiVariables = false;
# efi.efiSysMountPoint = "/boot/efi";
grub = { grub = {
efiSupport = true; efiSupport = true;
configurationLimit = 10; configurationLimit = 10;
@ -69,9 +68,9 @@
hardware.opengl = { hardware.opengl = {
enable = true; enable = true;
#extraPackages = with pkgs; [ extraPackages = with pkgs; [
# intel-compute-runtime intel-compute-runtime
#]; ];
}; };
hardware.opentabletdriver.enable = true; hardware.opentabletdriver.enable = true;
@ -82,9 +81,6 @@
extraGroups = ["wheel" "networkmanager" "audio" "video" "bluetooth" "kvm"]; extraGroups = ["wheel" "networkmanager" "audio" "video" "bluetooth" "kvm"];
home = "/home/tacocat"; home = "/home/tacocat";
description = "Aria Nolan"; description = "Aria Nolan";
packages = with pkgs; [
kitty
];
}; };
programs.river.enable = true; programs.river.enable = true;
@ -93,6 +89,8 @@
swayidle swayidle
]; ];
programs.waybar.enable = true;
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
vim vim
@ -104,19 +102,6 @@
]; ];
}; };
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. It's perfectly fine and recommended to leave # on your system were taken. It's perfectly fine and recommended to leave

View file

@ -30,6 +30,7 @@
networkmanagerapplet networkmanagerapplet
htop htop
p7zip p7zip
cachix
]; ];
}; };

View file

@ -29,6 +29,7 @@
}; };
} }
# TODO change vi-mode cursor
{ {
name = "zsh-vi-mode"; name = "zsh-vi-mode";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {

View file

@ -22,5 +22,5 @@
slurp slurp
]; ];
programs.rofi.package = pkgs.rofi-wayland-unwrapped; programs.rofi.package = pkgs.rofi-wayland;
} }