Compare commits

..

No commits in common. "4aedbd228b4bf592a4aef1eabae1be6b1545784e" and "9f77bbb4ab58854c25789f70783f52ba0366a646" have entirely different histories.

5 changed files with 33 additions and 20 deletions

View file

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

View file

@ -14,6 +14,7 @@
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = false; efi.canTouchEfiVariables = false;
# efi.efiSysMountPoint = "/boot/efi";
grub = { grub = {
efiSupport = true; efiSupport = true;
configurationLimit = 10; configurationLimit = 10;
@ -68,9 +69,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;
@ -81,6 +82,9 @@
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;
@ -89,8 +93,6 @@
swayidle swayidle
]; ];
programs.waybar.enable = true;
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
vim vim
@ -102,6 +104,19 @@
]; ];
}; };
# 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,7 +30,6 @@
networkmanagerapplet networkmanagerapplet
htop htop
p7zip p7zip
cachix
]; ];
}; };

View file

@ -29,7 +29,6 @@
}; };
} }
# 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; programs.rofi.package = pkgs.rofi-wayland-unwrapped;
} }