mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-22 13:53:09 +02:00
changes
Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
This commit is contained in:
parent
a9e6ab54cd
commit
45d10b065d
3 changed files with 13 additions and 8 deletions
12
flake.lock
12
flake.lock
|
@ -202,11 +202,11 @@
|
||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1679786039,
|
"lastModified": 1680000368,
|
||||||
"narHash": "sha256-VNjswu0Q4bZOkWNuc0+dHvRdjUCj+MnDlRfw/Q0R3vI=",
|
"narHash": "sha256-TlgC4IJ7aotynUdkGRtaAVxquaiddO38Ws89nB7VGY8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "cf662b6c98a0da81e06066fff0ecf9cbd4627727",
|
"rev": "765e4007b6f9f111469a25d1df6540e8e0ca73a6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -325,11 +325,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_3": {
|
"nixpkgs_3": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1679865578,
|
"lastModified": 1679944645,
|
||||||
"narHash": "sha256-sYQmxxqIYL3QFsRYjW0AufhGur8qWfwoOGPGHRJZlGc=",
|
"narHash": "sha256-e5Qyoe11UZjVfgRfwNoSU57ZeKuEmjYb77B9IVW7L/M=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4361baa782dc3d3b35fd455a1adc370681d9187c",
|
"rev": "4bb072f0a8b267613c127684e099a70e1f6ff106",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -89,6 +89,7 @@ in {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Alex S.";
|
description = "Alex S.";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
|
/*
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
kate
|
kate
|
||||||
|
@ -126,6 +127,7 @@ in {
|
||||||
doom-emacs
|
doom-emacs
|
||||||
ripgrep
|
ripgrep
|
||||||
];
|
];
|
||||||
|
*/
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
hashedPassword = "$6$OBjnSQhhJgHsr5LE$jFtUz.2qv0l2viv86exXmfHWC0fDFXKD3rqH41NmqgkdoBrwY2rPkDBCPjdq7PSoeudYcQ0nXxJvh1N7EIUs90";
|
hashedPassword = "$6$OBjnSQhhJgHsr5LE$jFtUz.2qv0l2viv86exXmfHWC0fDFXKD3rqH41NmqgkdoBrwY2rPkDBCPjdq7PSoeudYcQ0nXxJvh1N7EIUs90";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
{ pkgs, inputs, lib, ... }:
|
{ pkgs, inputs, lib, ... }:
|
||||||
let
|
let
|
||||||
nix-software-center = inputs.nix-software-center.packages.${pkgs.system}.nix-software-center;
|
nix-software-center = inputs.nix-software-center.packages.${pkgs.system}.nix-software-center;
|
||||||
doom-emacs = inputs.nix-doom-emacs.packages.${pkgs.system}.default;
|
doom-emacs = inputs.nix-doom-emacs.packages.${pkgs.system}.default.override {
|
||||||
|
doomPrivateDir = ./doom.d;
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
imports = [ inputs.nix-doom-emacs.hmModule ];
|
imports = [ inputs.nix-doom-emacs.hmModule ];
|
||||||
home = {
|
home = {
|
||||||
|
@ -41,13 +43,14 @@ in {
|
||||||
obsidian
|
obsidian
|
||||||
gnome-obfuscate
|
gnome-obfuscate
|
||||||
microsoft-edge
|
microsoft-edge
|
||||||
(lib.hiPrio doom-emacs)
|
# doom-emacs
|
||||||
ripgrep
|
ripgrep
|
||||||
w3m
|
w3m
|
||||||
github-cli
|
github-cli
|
||||||
mc
|
mc
|
||||||
zellij
|
zellij
|
||||||
lsd
|
lsd
|
||||||
|
tealdeer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
|
|
Loading…
Reference in a new issue