Compare commits
4 Commits
c52e87b3ca
...
a781c9d1df
| Author | SHA1 | Date | |
|---|---|---|---|
| a781c9d1df | |||
| c13ad6eeca | |||
| 5019c4b737 | |||
| bd60a0f2ee |
30
flake.lock
30
flake.lock
@ -38,11 +38,11 @@
|
||||
"fromYaml": "fromYaml"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1708890466,
|
||||
"narHash": "sha256-LlrC09LoPi8OPYOGPXegD72v+//VapgAqhbOFS3i8sc=",
|
||||
"lastModified": 1731966541,
|
||||
"narHash": "sha256-AhX8QQBQLRqEWHftFibTmvlmh157134vzBYXW0LOBKo=",
|
||||
"owner": "SenchoPens",
|
||||
"repo": "base16.nix",
|
||||
"rev": "665b3c6748534eb766c777298721cece9453fdae",
|
||||
"rev": "d8e769add6333892b44afc107f193074a5072717",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -108,11 +108,11 @@
|
||||
},
|
||||
"locked": {
|
||||
"dir": "pkgs/firefox-addons",
|
||||
"lastModified": 1731989000,
|
||||
"narHash": "sha256-jOXdFK0+BHuS/B8w0VDGEy2wxsKZlfLyML5sIugc56U=",
|
||||
"lastModified": 1732024923,
|
||||
"narHash": "sha256-cLPsA9gUOWa2R3GI3JTS79JWjuczsEVONhECQXSq2Kw=",
|
||||
"owner": "rycee",
|
||||
"repo": "nur-expressions",
|
||||
"rev": "23c5920be219c5e14b32bdb9987314be13941adf",
|
||||
"rev": "e8342147922133c13bab28940e558a778add6539",
|
||||
"type": "gitlab"
|
||||
},
|
||||
"original": {
|
||||
@ -193,11 +193,11 @@
|
||||
"fromYaml": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1689549921,
|
||||
"narHash": "sha256-iX0pk/uB019TdBGlaJEWvBCfydT6sRq+eDcGPifVsCM=",
|
||||
"lastModified": 1731966426,
|
||||
"narHash": "sha256-lq95WydhbUTWig/JpqiB7oViTcHFP8Lv41IGtayokA8=",
|
||||
"owner": "SenchoPens",
|
||||
"repo": "fromYaml",
|
||||
"rev": "11fbbbfb32e3289d3c631e0134a23854e7865c84",
|
||||
"rev": "106af9e2f715e2d828df706c386a685698f3223b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -252,11 +252,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1731968878,
|
||||
"narHash": "sha256-+hTCwETOE9N8voTAaF+IzdUZz28Ws3LDpH90FWADrEE=",
|
||||
"lastModified": 1732025103,
|
||||
"narHash": "sha256-qjEI64RKvDxRyEarY0jTzrZMa8ebezh2DEZmJJrpVdo=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "a42fa14b53ceab66274a21da480c9f8e06204173",
|
||||
"rev": "a46e702093a5c46e192243edbd977d5749e7f294",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -577,11 +577,11 @@
|
||||
"tinted-tmux": "tinted-tmux"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1731920923,
|
||||
"narHash": "sha256-Pqe38TdvfyywhlhpR1WLJlD7uTOGXRRuzpHIh2edOz0=",
|
||||
"lastModified": 1732036949,
|
||||
"narHash": "sha256-prZV8HDVvBqHiJLkjElJYoZ6zonV7cOABb8Z0lWonJA=",
|
||||
"owner": "danth",
|
||||
"repo": "stylix",
|
||||
"rev": "f8699483e46972f64b0dee5d5e41bf4bb142629b",
|
||||
"rev": "4912f4db00bc931c7636d827e829faf01f6bf155",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
@ -228,12 +228,20 @@
|
||||
users.users.foglar = {
|
||||
isNormalUser = true;
|
||||
description = "foglar";
|
||||
extraGroups = ["networkmanager" "wheel" "lp" "scanner"];
|
||||
extraGroups = ["networkmanager" "wheel" "lp" "scanner" "docker"];
|
||||
packages = with pkgs; [
|
||||
# thunderbird
|
||||
];
|
||||
};
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
rootless = {
|
||||
enable = true;
|
||||
setSocketVariable = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.kdeconnect.enable = true;
|
||||
programs.wireshark.enable = true;
|
||||
programs.steam = {
|
||||
|
||||
@ -22,7 +22,8 @@
|
||||
wlogout.enable = lib.mkDefault true;
|
||||
|
||||
xdg.portal.enable = true;
|
||||
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
#xdg.portal.config = { commom;
|
||||
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
|
||||
|
||||
services.network-manager-applet.enable = true;
|
||||
services.dunst.enable = true;
|
||||
|
||||
@ -37,6 +37,10 @@
|
||||
hist = "history | awk '{for (i=2; i<=NF; i++) printf \$i\" \"; print \"\"}' | fzf | wl-copy";
|
||||
packages = "paru -Qe | fzf | wl-copy";
|
||||
cdx = "zoxide query --interactive";
|
||||
|
||||
|
||||
distrobox-enter = "distrobox-enter --root";
|
||||
distrobox-create = "distrobox-create --root";
|
||||
};
|
||||
|
||||
bashrcExtra = ''
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
"workbench.iconTheme" = "material-icon-theme";
|
||||
"workbench.productIconTheme" = "material-product-icons";
|
||||
"window.menuBarVisibility" = "toggle";
|
||||
"github.copilot.editor.enableAutoCompletions" = false;
|
||||
"github.copilot.editor.enableAutoCompletions" = true;
|
||||
"[json]" = {
|
||||
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||
};
|
||||
|
||||
@ -23,6 +23,7 @@
|
||||
home.packages = with pkgs; [
|
||||
neovim
|
||||
arduino-ide
|
||||
distrobox
|
||||
go
|
||||
jq
|
||||
conda
|
||||
|
||||
@ -37,6 +37,12 @@
|
||||
"background" = "transparent";
|
||||
"template" = "{{if eq .Type \"impure\" }}[ nix-shell]{{ end }}";
|
||||
}
|
||||
{
|
||||
"type" = "text";
|
||||
"style" = "plain";
|
||||
"foreground" = "yellow";
|
||||
"template" = "{{ if .Env.CONTAINER_ID }}-[ {{ .Env.CONTAINER_ID }}]-{{ end }}";
|
||||
}
|
||||
{
|
||||
"type" = "python";
|
||||
"foreground" = "yellow";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user