b
This commit is contained in:
parent
143beb7934
commit
cea23c8303
|
@ -67,7 +67,7 @@ Then install all userscripts and userstyles from [Here](https://gitlab.com/Chaot
|
||||||
## Telegram Desktop (kotatogram)
|
## Telegram Desktop (kotatogram)
|
||||||
- Set interface size to 200%
|
- Set interface size to 200%
|
||||||
- Recent stickers: show 40 stickers
|
- Recent stickers: show 40 stickers
|
||||||
- Sticker Height: 140px
|
- Sticker Height: 165px
|
||||||
- Upload Speed Boost: Slight
|
- Upload Speed Boost: Slight
|
||||||
- Main Font & Semibold Font: Comic Sans MS
|
- Main Font & Semibold Font: Comic Sans MS
|
||||||
- Monospaced Font: Comic Code
|
- Monospaced Font: Comic Code
|
||||||
|
@ -126,4 +126,4 @@ Zoom: 165%
|
||||||
- Default View&Editor Syntax: YAML
|
- Default View&Editor Syntax: YAML
|
||||||
- View&Editor Indent: 2
|
- View&Editor Indent: 2
|
||||||
### gitlab.com
|
### gitlab.com
|
||||||
Zoom: 185%
|
Zoom: 185%
|
||||||
|
|
20
flake.lock
20
flake.lock
|
@ -40,7 +40,9 @@
|
||||||
},
|
},
|
||||||
"home-manager": {
|
"home-manager": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1643411645,
|
"lastModified": 1643411645,
|
||||||
|
@ -57,20 +59,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
|
||||||
"lastModified": 1643322911,
|
|
||||||
"narHash": "sha256-WLe4lXAYXH/v80iO02npX1wdXq4nIVEHJTONLXbQrL0=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "d9e21f284317f85b3476c0043f4efea87a226c3a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"id": "nixpkgs",
|
|
||||||
"type": "indirect"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs_2": {
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1643347846,
|
"lastModified": 1643347846,
|
||||||
"narHash": "sha256-O0tyXF//ppRpe9yT1Uu5n34yI2MWDyY6ZiJ4Qn5zIkE=",
|
"narHash": "sha256-O0tyXF//ppRpe9yT1Uu5n34yI2MWDyY6ZiJ4Qn5zIkE=",
|
||||||
|
@ -90,7 +78,7 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"deploy-rs": "deploy-rs",
|
"deploy-rs": "deploy-rs",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nixpkgs": "nixpkgs_2"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"utils": {
|
"utils": {
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
deploy-rs.url = "github:serokell/deploy-rs";
|
deploy-rs.url = "github:serokell/deploy-rs";
|
||||||
deploy-rs.inputs.nixpkgs.follows = "nixpkgs";
|
deploy-rs.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"editor.tabSize" = 4;
|
"editor.tabSize" = 4;
|
||||||
"window.zoomLevel" = -3;
|
"window.zoomLevel" = 1;
|
||||||
"workbench.preferredDarkColorTheme" = "SynthWave '84";
|
"workbench.preferredDarkColorTheme" = "SynthWave '84";
|
||||||
"editor.fontSize" = 24;
|
"editor.fontSize" = 24;
|
||||||
"editor.fontFamily" = "'Comic Code'";
|
"editor.fontFamily" = "'Comic Code'";
|
||||||
|
|
|
@ -4,5 +4,7 @@
|
||||||
hardware.pulseaudio = {
|
hardware.pulseaudio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.pulseaudioFull;
|
package = pkgs.pulseaudioFull;
|
||||||
|
support32Bit = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue