chore: Update flake inputs
This commit is contained in:
parent
0e0c620c54
commit
1f9d373ddb
7 changed files with 105 additions and 47 deletions
|
|
@ -1,11 +1,24 @@
|
|||
{ config, lib, pkgs, inputs, ... }:
|
||||
let electron-overlay = final: prev: { electron = final.electron_25; };
|
||||
in {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
electron-overlay = final: prev: { electron = final.electron_25; };
|
||||
in
|
||||
{
|
||||
imports = [ ];
|
||||
|
||||
users.users."alex" = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "input" "networkmanager" "wheel" ];
|
||||
extraGroups = [
|
||||
"input"
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"video"
|
||||
];
|
||||
description = "Alexander Kobjolke";
|
||||
home = "/home/alex";
|
||||
shell = pkgs.zsh;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
home.shellAliases = {
|
||||
suspend = "systemctl hibernate";
|
||||
nrs = "sudo nixos-rebuild switch --flake .";
|
||||
nrb = "sudo nixos-rebuild build --flake .";
|
||||
nrs = "sudo nixos-rebuild switch --flake ~/src/nixos-config";
|
||||
nrb = "sudo nixos-rebuild build --flake ~/src/nixos-config";
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
|
|
@ -12,7 +17,11 @@
|
|||
autosuggestion.enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "fzf" "fd" "z" ];
|
||||
plugins = [
|
||||
"git"
|
||||
"fzf"
|
||||
"z"
|
||||
];
|
||||
theme = "simple";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,11 +1,16 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
config.services.dunst = {
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.gnome3.adwaita-icon-theme;
|
||||
package = pkgs.adwaita-icon-theme;
|
||||
size = "16x16";
|
||||
};
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue